We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c414703 commit b84b5a5Copy full SHA for b84b5a5
1 file changed
.github/actions/tests/api-tests/action.yaml
@@ -25,7 +25,6 @@ runs:
25
USER_API_SECRET: ${{ inputs.user_api_secret }}
26
API_MARKERS: ${{ inputs.api_markers }}
27
run: |
28
- 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"
29
pip install --no-deps -r requirements.txt
30
cat >pytest.env <<-EOF
31
TYK_TEST_BASE_URL=http://localhost:3000/
@@ -45,4 +44,4 @@ runs:
45
44
TYK_TEST_KEYCLOAK_URL=http://localhost:8180
46
TYK_TEST_KEYCLOAK_INTERNAL_URL=http://keycloak:8080
47
EOF
48
- 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 }}"
0 commit comments