-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpytest.ini
More file actions
20 lines (20 loc) · 774 Bytes
/
pytest.ini
File metadata and controls
20 lines (20 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[pytest]
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
markers =
priority_p0: Critical tests - core functionality
priority_p1: High priority tests - core user journeys
priority_p2: Medium priority tests - secondary features
priority_p3: Low priority tests - rarely used features
integration: Integration tests requiring live exchange connectivity
websocket: WebSocket-specific integration tests
trading: Tests that place real orders on sandbox exchange
live: Tests that require live production environment
slow: Tests that take a long time to execute
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
filterwarnings =
ignore::RuntimeWarning
ignore::DeprecationWarning