-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
38 lines (35 loc) · 911 Bytes
/
pytest.ini
File metadata and controls
38 lines (35 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[pytest]
norecursedirs = data .tox _plugin_template .idea node_modules ~*
django_find_project = false
DJANGO_SETTINGS_MODULE = hope_documents.config.settings
log_format = %(asctime)s %(levelname)s %(message)s
log_level = CRITICAL
pythonpath = tests/extras src/
log_date_format = %Y-%m-%d %H:%M:%S
;reruns = 3
;reruns_delay = 2
addopts =
--cov=hope_documents
--cov=hope_ocr
--cov-report=html
--cov-config=./tests/.coveragerc
--create-db
--maxfail=20
--tb=short
--capture=no
--echo-version django
--echo-env PYTHONPATH
markers =
api: REST api tests
selenium: Run selenium functional tests
skip_models:
skip_buttons:
admin:
mini_racer:
skip_on_darwin:
file_path:
record:
python_files=tests/**/test_*.py tests/test_*.py
filterwarnings =
ignore::DeprecationWarning
ignore::RuntimeWarning