Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Failing after 6m9s
CI/CD Pipeline / Security Scanning (push) Successful in 26s
CI/CD Pipeline / Tests (3.11) (push) Failing after 5m24s
CI/CD Pipeline / Tests (3.12) (push) Failing after 5m23s
CI/CD Pipeline / Build Docker Image (push) Has been skipped
CI/CD Pipeline / Deploy to Staging (push) Has been skipped
CI/CD Pipeline / Deploy to Production (push) Has been skipped
CI/CD Pipeline / Notification (push) Successful in 1s
21 lines
492 B
INI
21 lines
492 B
INI
[tool:pytest]
|
|
asyncio_mode = auto
|
|
testpaths = tests
|
|
addopts =
|
|
-v
|
|
--tb=short
|
|
--strict-config
|
|
--strict-markers
|
|
--cov=src/guardden
|
|
--cov-report=term-missing
|
|
--cov-report=html
|
|
--cov-fail-under=75
|
|
--no-cov-on-fail
|
|
markers =
|
|
asyncio: mark test as async
|
|
integration: mark test as integration test
|
|
slow: mark test as slow
|
|
security: mark test as security-focused
|
|
filterwarnings =
|
|
ignore::DeprecationWarning
|
|
ignore::PendingDeprecationWarning |