feat(tests): Implement comprehensive testing framework for telemetry system

This commit is contained in:
AHMET YILMAZ
2025-09-22 19:06:20 +08:00
parent 7f360577d9
commit d48d382d18
8 changed files with 1069 additions and 9 deletions

16
pytest.ini Normal file
View File

@@ -0,0 +1,16 @@
[pytest]
testpaths = tests
python_paths = .
addopts = --maxfail=1 --disable-warnings -q --tb=short -v
asyncio_mode = auto
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests
unit: marks tests as unit tests
privacy: marks tests related to privacy compliance
performance: marks tests related to performance
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
env =
CRAWL4AI_TEST_MODE=1