-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpytest.ini
42 lines (41 loc) · 887 Bytes
/
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
[pytest]
console_output_style=classic
filterwarnings =
error
ignore::DeprecationWarning
ignore::UserWarning
junit_duration_report = total
junit_family= xunit2
junit_logging=system-out
junit_log_passing_tests=false
junit_suite_name=personify_server__pytest_suit
log_auto_indent=true
log_cli=true
log_cli_date_format=%Y-%m-%d %H:%M:%S
log_cli_format=%(asctime)s %(levelname)s %(message)s
log_cli_level=info
log_date_format=%Y-%m-%d %H:%M:%S
addopts =
-ra
-q
--strict-markers
--disable-pytest-warnings
markers =
unit : mark a test as a unit test
integration : mark a test as a integration test
e2e : mark a test as an end-to-end test
minversion = 6.0
python_classes =
Test*
python_files =
test_*.py
python_functions =
test_*
pythonpath =
src
required_plugins =
pytest-asyncio
pytest-cov
pytest-dotenv
testpaths=
tests