Skip to content

Commit

Permalink
CI: Run all tests when coverage is enabled
Browse files Browse the repository at this point in the history
A recent change in the CI enabled coverage, however it did so on
the latest tags, meaning we were no longer running the other
tests (from the testsuite). This corrects it.
  • Loading branch information
Geod24 authored and dlang-bot committed Feb 8, 2024
1 parent 7118fa6 commit f193d4f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/ci/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ if [ "$COVERAGE" = true ]; then
dub test --compiler=${DC} -b unittest-cov
./build.d -cov
else
dub test --compiler=${DC} -b unittest-cov
./build.d
DUB=`pwd`/bin/dub DC=${DC} dub --single ./test/run-unittest.d
DUB=`pwd`/bin/dub DC=${DC} test/run-unittest.sh
fi
DUB=`pwd`/bin/dub DC=${DC} dub --single ./test/run-unittest.d
DUB=`pwd`/bin/dub DC=${DC} test/run-unittest.sh

0 comments on commit f193d4f

Please sign in to comment.