forked from DeepPythonist/PyHetznerServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
28 lines (28 loc) · 639 Bytes
/
Copy pathpytest.ini
File metadata and controls
28 lines (28 loc) · 639 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
[tool:pytest]
minversion = 6.0
addopts =
-ra
-q
--strict-markers
--strict-config
--disable-warnings
testpaths =
tests
.
python_files =
test_*.py
*_test.py
python_classes = Test*
python_functions = test_*
markers =
unit: Unit tests
integration: Integration tests that require API access
slow: Slow running tests
network: Tests that require network access
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
log_cli = true
log_cli_level = INFO
log_cli_format = %(asctime)s [%(levelname)8s] %(name)s: %(message)s
log_cli_date_format = %Y-%m-%d %H:%M:%S