-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
23 lines (23 loc) · 703 Bytes
/
Copy pathpytest.ini
File metadata and controls
23 lines (23 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--tb=short
--asyncio-mode=auto
markers =
asyncio: marks tests as async
integration: marks tests as integration tests
unit: marks tests as unit tests
slow: marks tests as slow running (performance tests)
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::pytest.PytestUnknownMarkWarning
ignore:.*crypt.*:DeprecationWarning
ignore:.*Session.add.*:sqlalchemy.exc.SAWarning
ignore:Unknown pytest.mark.*:pytest.PytestUnknownMarkWarning