Skip to content

Commit

Permalink
Take out Basement file skipping
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Sep 3, 2024
1 parent 9f9e8da commit 4068418
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_develop_commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,4 @@ jobs:
# Not running test on alternate build yet, I need to test things
if: matrix.alternate == false
working-directory: ./build
run: ctest -C Release -E Basement -j ${{ matrix.nproc }}
run: ctest -C Release -j ${{ matrix.nproc }}
4 changes: 2 additions & 2 deletions .github/workflows/test_pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Baseline Test
if: matrix.run_regressions
working-directory: ./baseline/build
run: ctest -C Release -E Basement -R integration -j 3 # TODO: Speed up basement so we don't have to skip it.
run: ctest -C Release -R integration -j 3 # TODO: Speed up basement so we don't have to skip it.

# BUILD AND TEST EVERYTHING ON THE CURRENT BRANCH

Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:

- name: Branch Test
working-directory: ./branch/build
run: ctest -C Release -E Basement -j 3
run: ctest -C Release -j 3

- name: Install Regression Tool
if: always() && matrix.run_regressions && steps.branch_build.outcome != 'failure' # always run this step as long as we actually built
Expand Down

0 comments on commit 4068418

Please sign in to comment.