-
Notifications
You must be signed in to change notification settings - Fork 1
/
pytest.ini
43 lines (41 loc) · 1.04 KB
/
pytest.ini
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
39
40
41
42
43
[pytest]
norecursedirs = data .tox _plugin_template .idea node_modules ~*
django_find_project = false
log_format = %(asctime)s %(levelname)s %(message)s
log_level = CRITICAL
log_cli = False
log_date_format = %Y-%m-%d %H:%M:%S
junit_family=xunit1
pythonpath=src
testpaths=tests
tmp_path_retention_policy=all
tmp_path_retention_count=0
selenium_exclude_debug=true
;log_cli = 0
;log_cli_level = CRITICAL
;log_cli_format = [%(levelname)-8s] %(message)s (%(filename)s:%(lineno)s)
;log_cli_date_format=%Y-%m-%d %H:%M:%S
addopts =
-rs
--reuse-db
--tb=short
--capture=sys
--echo-version django
--cov=hope_country_report
--cov-config=tests/.coveragerc
--cov-report html
--cov-report xml
markers =
selenium
api
admin
skip_models
skip_buttons
select_buttons
smoke
needs_prod_environment
python_files=test_*.py
filterwarnings =
ignore::DeprecationWarning
ignore::django.utils.deprecation.RemovedInDjango51Warning
ignore::coverage.exceptions.CoverageWarning