- Update key capabilities to include GPU marketplace, payments, billing, and governance - Expand CLI section from basic examples to 12 command groups with 90+ subcommands - Add detailed test results table showing 208 passing tests across 6 test suites - Update documentation links to reference new CLI reference and coordinator API docs - Revise test commands to reflect actual test structure (
38 lines
887 B
INI
38 lines
887 B
INI
[tool:pytest]
|
|
# pytest configuration for AITBC
|
|
|
|
# Test discovery
|
|
python_files = test_*.py *_test.py
|
|
python_classes = Test*
|
|
python_functions = test_*
|
|
|
|
# Custom markers
|
|
markers =
|
|
unit: Unit tests (fast, isolated)
|
|
integration: Integration tests (may require external services)
|
|
slow: Slow running tests
|
|
|
|
# Additional options for local testing
|
|
addopts =
|
|
--verbose
|
|
--tb=short
|
|
|
|
# Python path for imports (must match pyproject.toml)
|
|
pythonpath =
|
|
.
|
|
packages/py/aitbc-core/src
|
|
packages/py/aitbc-crypto/src
|
|
packages/py/aitbc-p2p/src
|
|
packages/py/aitbc-sdk/src
|
|
apps/coordinator-api/src
|
|
apps/wallet-daemon/src
|
|
apps/blockchain-node/src
|
|
|
|
# Warnings
|
|
filterwarnings =
|
|
ignore::UserWarning
|
|
ignore::DeprecationWarning
|
|
ignore::PendingDeprecationWarning
|
|
ignore::pytest.PytestUnknownMarkWarning
|
|
ignore::pydantic.PydanticDeprecatedSince20
|