-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
33 lines (29 loc) · 709 Bytes
/
pytest.ini
File metadata and controls
33 lines (29 loc) · 709 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
[tool:pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
--cov=api
--cov=core
--cov=integrations
--cov-report=term-missing
--cov-report=html:htmlcov
--cov-fail-under=80
markers =
unit: Unit tests
integration: Integration tests
slow: Slow running tests
external: Tests requiring external services
auth: Authentication related tests
trading: Trading functionality tests
strategy: Strategy tests
api: API endpoint tests
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
asyncio_mode = auto