Files
aitbc/pytest.ini
aitbc 08b03d4bc0
All checks were successful
Python Tests / test-python (push) Successful in 2m48s
ci: restructure Python test paths and add asyncio configuration
- Changed test paths from apps/coordinator-api and apps/blockchain-node to tests/archived_phase_tests and tests/cross_phase
- Removed --ignore flags for tests/production and test_confidential*.py files
- Added asyncio_mode = auto and asyncio_default_fixture_loop_scope = function to pytest.ini for better async test handling
2026-04-19 20:01:42 +02:00

13 lines
399 B
INI

[pytest]
testpaths = tests apps/blockchain-node/tests apps/coordinator-api/tests apps/wallet/tests cli/tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts = -v --tb=short
asyncio_mode = auto
asyncio_default_fixture_loop_scope = function
markers =
slow: marks tests as slow
integration: marks tests as integration tests
unit: marks tests as unit tests