CI: Run all tests when coverage is enabled
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.
1 parent 7118fa6 commit f193d4fa734bfb049dc81ce39cb4c1002e52bf2c
@Mathias Lang Mathias Lang authored on 7 Feb 2024
The Dlang Bot committed on 8 Feb 2024
Showing 1 changed file
View
5
scripts/ci/ci.sh
# library-nonet fails to build with coverage (Issue 13742)
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