Skip to content

Commit 089deaf

Browse files
authored
Do not run unit test as part of integration tests (#3827)
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.
1 parent 68bea10 commit 089deaf

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -201,10 +201,6 @@ jobs:
201201
cabal-nix-${{ runner.os }}-ghc-${{ env.ghc_version }}-${{ hashFiles('cabal.project') }}
202202
cabal-nix-${{ runner.os }}-ghc-${{ env.ghc_version }}
203203
204-
- name: Run unit tests
205-
if: ${{ steps.changes.outputs.booster == 'true' || steps.changes.outputs.kore == 'true' || steps.changes.outputs.project == 'true' }}
206-
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"
207-
208204
- name: Run booster integration tests
209205
if: ${{ (steps.changes.outputs.booster == 'true' || steps.changes.outputs.kore_rpc_types == 'true' || steps.changes.outputs.project == 'true') }}
210206
run: |

0 commit comments

Comments
 (0)