From b84b5a590bf5dd2747ab373e54e1ebe1e970a6b8 Mon Sep 17 00:00:00 2001 From: konrad Date: Thu, 9 Jul 2026 16:30:48 +0200 Subject: [PATCH] update the API tests t run in parallel --- .github/actions/tests/api-tests/action.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/tests/api-tests/action.yaml b/.github/actions/tests/api-tests/action.yaml index 02f9c6d..04b0b2c 100644 --- a/.github/actions/tests/api-tests/action.yaml +++ b/.github/actions/tests/api-tests/action.yaml @@ -25,7 +25,6 @@ runs: USER_API_SECRET: ${{ inputs.user_api_secret }} API_MARKERS: ${{ inputs.api_markers }} run: | - pytest="pytest --ci --random-order --force-flaky --no-success-flaky-report --maxfail=3 --junitxml=${XUNIT_REPORT_PATH} --cache-clear --ignore=./tests/mdcb -v --log-cli-level=ERROR" pip install --no-deps -r requirements.txt cat >pytest.env <<-EOF TYK_TEST_BASE_URL=http://localhost:3000/ @@ -45,4 +44,4 @@ runs: TYK_TEST_KEYCLOAK_URL=http://localhost:8180 TYK_TEST_KEYCLOAK_INTERNAL_URL=http://keycloak:8080 EOF - env $(cat pytest.env | xargs) $pytest -m "${{ inputs.api_markers }}" + env $(cat pytest.env | xargs) pytest -c pytest_ci.ini --ci --junitxml=${XUNIT_REPORT_PATH} -m "${{ inputs.api_markers }}"