-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
35 lines (35 loc) · 811 Bytes
/
pytest.ini
File metadata and controls
35 lines (35 loc) · 811 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
[pytest]
testpaths =
tests
backend/tests
ai-engine/tests
ai-engine/src/tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
pythonpath =
backend/src
ai-engine/src
.
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
--asyncio-mode=auto
asyncio_mode = auto
asyncio_default_fixture_loop_scope = session
asyncio_default_test_loop_scope = function
markers =
asyncio: Async tests
integration: Integration tests
integration_docker: Docker integration tests
unit: Unit tests
slow: Slow running tests
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
ignore::pytest.PytestUnknownMarkWarning
ignore::pytest_asyncio.plugin.PytestDeprecationWarning
env =
TESTING = true