Remove extra logic missed in 68131ce7ab

This allowed the tests in https://github.com/saltstack/salt/pull/66169
to pass when they shouldn't
This commit is contained in:
Pedro Algarvio 2024-04-03 08:59:43 +01:00
parent 5c0a890078
commit bc36e7a82c
2 changed files with 2 additions and 2 deletions

View file

@ -172,7 +172,7 @@ jobs:
- name: Run Changed Tests
id: run-fast-changed-tests
if: ${{ fromJSON(inputs.testrun)['type'] != 'full' && fromJSON(inputs.testrun)['selected_tests']['fast'] == false }}
if: ${{ fromJSON(inputs.testrun)['type'] != 'full' }}
env:
SKIP_REQUIREMENTS_INSTALL: "1"
PRINT_TEST_SELECTION: "0"

View file

@ -199,7 +199,7 @@ jobs:
- name: Run Changed Tests
id: run-fast-changed-tests
if: ${{ fromJSON(inputs.testrun)['type'] != 'full' && fromJSON(inputs.testrun)['selected_tests']['fast'] == false }}
if: ${{ fromJSON(inputs.testrun)['type'] != 'full' }}
run: |
tools --timestamps --no-output-timeout-secs=1800 --timeout-secs=14400 vm test --skip-requirements-install \
--nox-session=${{ inputs.nox-session }} --rerun-failures -E SALT_TRANSPORT ${{ matrix.fips && '--fips ' || '' }}${{ inputs.distro-slug }} \