From dec746fffce31b306101c25cc347b9b7cea8933c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jiri=20Dan=C4=9Bk?= Date: Sun, 3 Apr 2022 22:05:06 +0200 Subject: [PATCH] disable parallel --- .github/actions/skupper-integration-tests/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/skupper-integration-tests/action.yml b/.github/actions/skupper-integration-tests/action.yml index 77363309a..cca2c69d9 100644 --- a/.github/actions/skupper-integration-tests/action.yml +++ b/.github/actions/skupper-integration-tests/action.yml @@ -88,10 +88,10 @@ runs: - name: Run Skupper integration tests run: | - export PUBLIC_1_INGRESS_HOST=10.0.1.1 - export QDROUTERD_IMAGE=localhost:32000/skupper-router:registry + #export PUBLIC_1_INGRESS_HOST=10.0.1.1 + #export QDROUTERD_IMAGE=localhost:32000/skupper-router:registry - go test -tags=integration -timeout=60m -v ./test/integration/... + go test -p=1 -tags=integration -timeout=60m -v ./test/integration/... working-directory: skupper shell: bash