Skip to content

Commit

Permalink
Do not run unit test as part of integration tests (#3827)
Browse files Browse the repository at this point in the history
I've noticed we are running unit test as part of the "'Nix /
Integration'" job, but we also have a dedicated "'Nix / Unit Tests" job
that runs them in exactly the same way, so we may as well skip them in
the integration tests job.
  • Loading branch information
geo2a authored Apr 24, 2024
1 parent 68bea10 commit 089deaf
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,6 @@ jobs:
cabal-nix-${{ runner.os }}-ghc-${{ env.ghc_version }}-${{ hashFiles('cabal.project') }}
cabal-nix-${{ runner.os }}-ghc-${{ env.ghc_version }}
- name: Run unit tests
if: ${{ steps.changes.outputs.booster == 'true' || steps.changes.outputs.kore == 'true' || steps.changes.outputs.project == 'true' }}
run: GC_DONT_GC=1 nix develop .#cabal --command bash -c "cabal update && cabal build all && cabal test --enable-tests --test-show-details=direct kore-test unit-tests"

- name: Run booster integration tests
if: ${{ (steps.changes.outputs.booster == 'true' || steps.changes.outputs.kore_rpc_types == 'true' || steps.changes.outputs.project == 'true') }}
run: |
Expand Down

0 comments on commit 089deaf

Please sign in to comment.