forked from apluslms/develop-aplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
22 lines (19 loc) · 743 Bytes
/
pytest.ini
File metadata and controls
22 lines (19 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[pytest]
# Run chromium without UI
addopts = --output a-plus/test_results --browser chromium
python_files = test*.py
testpaths =
a-plus/
DJANGO_SETTINGS_MODULE = aplus.settings
# These environment variables are used for the unit tests, but not for the e2e tests
env =
APLUS_BASE_URL=http://localhost
APLUS_LOCAL_SETTINGS=a-plus/aplus/local_settings.test.py
filterwarnings =
ignore::DeprecationWarning:format_cef._cef.base.*
ignore::DeprecationWarning:bootstrapform.meta.*
ignore::DeprecationWarning:model_utils.*
ignore::DeprecationWarning:importlib._bootstrap.*
ignore::DeprecationWarning:reportlab.lib.rl_safe_eval.*
ignore::Warning:django_settingsdict.*
ignore::Warning:django.db.models.options.*