From ea12226a5d1c6691ec6aa64c77cb2a349acda000 Mon Sep 17 00:00:00 2001 From: aitbc Date: Mon, 20 Apr 2026 21:21:47 +0200 Subject: [PATCH] fix: exclude tests/production from integration-tests - 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 --- .gitea/workflows/integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/integration-tests.yml b/.gitea/workflows/integration-tests.yml index 3e2b111a..0a1e8035 100644 --- a/.gitea/workflows/integration-tests.yml +++ b/.gitea/workflows/integration-tests.yml @@ -139,7 +139,7 @@ jobs: # Run existing test suites if [[ -d "tests" ]]; then - pytest tests/ -x --timeout=30 -q + pytest tests/ -x --timeout=30 -q --ignore=tests/production fi # Service health check integration