Skip to content

Commit

Permalink
try != true again
Browse files Browse the repository at this point in the history
  • Loading branch information
carlydf committed Jul 16, 2024
1 parent 09d7fe6 commit 532c0a9
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ env:
jobs:

misc-checks:
if: ${{ inputs.run_single_functional_test != 'true' }}
name: Misc checks
strategy:
fail-fast: false
Expand Down Expand Up @@ -96,7 +95,7 @@ jobs:
- run: docker compose -f ${{ env.DOCKER_COMPOSE_FILE }} pull

unit-test:
if: ${{ inputs.run_single_functional_test != 'true' }}
if: ${{ inputs.run_single_functional_test != true }}
name: Unit test
needs: misc-checks
strategy:
Expand Down Expand Up @@ -124,7 +123,7 @@ jobs:
run: make upload-test-results

integration-test:
if: ${{ inputs.run_single_functional_test != 'true' }}
if: ${{ inputs.run_single_functional_test != true }}
name: Integration test
needs: [misc-checks, cache-docker-images]
strategy:
Expand Down Expand Up @@ -194,7 +193,7 @@ jobs:
functional-test:
name: Functional test
needs: [cache-docker-images, set-up-functional-test]
needs: [misc-checks, cache-docker-images, set-up-functional-test]
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -274,7 +273,7 @@ jobs:
docker compose -f ${{ env.DOCKER_COMPOSE_FILE }} down -v
functional-test-xdc:
if: ${{ inputs.run_single_functional_test != 'true' }}
if: ${{ inputs.run_single_functional_test != true }}
name: Functional test xdc
needs: [misc-checks, cache-docker-images]
strategy:
Expand Down Expand Up @@ -342,7 +341,7 @@ jobs:
docker compose -f ${{ env.DOCKER_COMPOSE_FILE }} down -v
functional-test-ndc:
if: ${{ inputs.run_single_functional_test != 'true' }}
if: ${{ inputs.run_single_functional_test != true }}
name: Functional test ndc
needs: [misc-checks, cache-docker-images]
strategy:
Expand Down Expand Up @@ -410,7 +409,7 @@ jobs:
docker compose -f ${{ env.DOCKER_COMPOSE_FILE }} down -v
test-status:
if: ${{ inputs.run_single_functional_test != 'true' }}
if: ${{ inputs.run_single_functional_test != true }}
name: Test Status
needs:
- unit-test
Expand Down

0 comments on commit 532c0a9

Please sign in to comment.