diff --git a/.github/workflows/test_develop_commits.yml b/.github/workflows/test_develop_commits.yml index ba0aea5ddcb..e7669111172 100644 --- a/.github/workflows/test_develop_commits.yml +++ b/.github/workflows/test_develop_commits.yml @@ -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 }} diff --git a/.github/workflows/test_pull_requests.yml b/.github/workflows/test_pull_requests.yml index bbf9b6f5039..8f58f736b18 100644 --- a/.github/workflows/test_pull_requests.yml +++ b/.github/workflows/test_pull_requests.yml @@ -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 @@ -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