fix: exclude tests/production from integration-tests
All checks were successful
Integration Tests / test-service-integration (push) Successful in 11s

- Add --ignore=tests/production to pytest command
- Tests in production/ are localhost-backed integration tests
- Not suitable for CI environment
- Fixes AssertionError for missing /opt/aitbc/services/monitor.py
This commit is contained in:
aitbc
2026-04-20 21:21:47 +02:00
parent 29b6ee93bb
commit ea12226a5d

View File

@@ -139,7 +139,7 @@ jobs:
# Run existing test suites # Run existing test suites
if [[ -d "tests" ]]; then if [[ -d "tests" ]]; then
pytest tests/ -x --timeout=30 -q pytest tests/ -x --timeout=30 -q --ignore=tests/production
fi fi
# Service health check integration # Service health check integration