15 lines
682 B
INI
15 lines
682 B
INI
[pytest]
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
# Default: exclude integration tests (run with: pytest -m integration)
|
|
addopts = -v --tb=short -m "not integration"
|
|
filterwarnings =
|
|
ignore:'crypt' is deprecated and slated for removal in Python 3\.13:DeprecationWarning
|
|
|
|
markers =
|
|
live_testnet: marks tests as requiring live testnet API keys (deselect with '-m "not live_testnet"')
|
|
live_integration: marks tests as live integration tests (deselect with '-m "not live_integration"')
|
|
integration: marks tests as integration tests that make network calls or require external services (run with: pytest -m integration)
|