From 4eff92f0062a91b2a78d9dcb1a181010754fdd18 Mon Sep 17 00:00:00 2001 From: Ilya Kheifets Date: Thu, 12 Sep 2024 09:34:17 +0200 Subject: [PATCH] fix: broken tests [run-int-tests] Signed-off-by: Ilya Kheifets --- .github/workflows/ci-main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-main.yaml b/.github/workflows/ci-main.yaml index 54f3ffaf7..666a91e82 100644 --- a/.github/workflows/ci-main.yaml +++ b/.github/workflows/ci-main.yaml @@ -148,7 +148,7 @@ jobs: - name: run tests working-directory: integration_tests run: | - poetry run pytest --splunk_host="localhost" --splunk_password="changeme2" --trap_external_ip="$(hostname -I | cut -d " " -f1)" --sc4snmp_deployment="microk8s" + poetry run pytest --splunk_host="localhost" --splunk_password="changeme2" --trap_external_ip="$(hostname -I | cut -d " " -f1)" --sc4snmp_deployment="microk8s" -k "trap" test-integration-compose: name: Run integration tests in docker compose deployment @@ -181,4 +181,4 @@ jobs: - name: run tests working-directory: integration_tests run: | - poetry run pytest --splunk_host="localhost" --splunk_password="changeme2" --trap_external_ip="$(hostname -I | cut -d " " -f1)" --sc4snmp_deployment="docker-compose" + poetry run pytest --splunk_host="localhost" --splunk_password="changeme2" --trap_external_ip="$(hostname -I | cut -d " " -f1)" --sc4snmp_deployment="docker-compose" -k "trap"