Skip to content

Commit

Permalink
fixup! DEBUG: only run the failing tests
Browse files Browse the repository at this point in the history
Unfortunately, the environment variable `T` is not respected in `make
test`...

Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho committed Jan 22, 2025
1 parent 89acd80 commit 1118736
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ jobs:
jobname: ${{matrix.vector.jobname}}
distro: ${{matrix.vector.pool}}
TEST_OUTPUT_DIRECTORY: ${{github.workspace}}/t
T: t1400-update-ref.sh t3200-branch.sh
runs-on: ${{matrix.vector.pool}}
steps:
- uses: mxschmitt/action-tmate@v3
Expand Down
2 changes: 1 addition & 1 deletion t/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
TEST_RESULTS_DIRECTORY_SQ = $(subst ','\'',$(TEST_RESULTS_DIRECTORY))
CHAINLINTTMP_SQ = $(subst ','\'',$(CHAINLINTTMP))

T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh))
T = t1400-update-ref.sh t3200-branch.sh
THELPERS = $(sort $(filter-out $(T),$(wildcard *.sh)))
TLIBS = $(sort $(wildcard lib-*.sh)) annotate-tests.sh
TPERF = $(sort $(wildcard perf/p[0-9][0-9][0-9][0-9]-*.sh))
Expand Down

0 comments on commit 1118736

Please sign in to comment.