From 861bb4801908f0839b42f1d3f1d2c150a4c4b703 Mon Sep 17 00:00:00 2001 From: Benjamen Meyer Date: Sat, 16 Mar 2024 16:36:17 -0400 Subject: [PATCH] Bug Fix: Always run the unit tests The Build Process expects to find the output of the tests when doing a release. It is probably wise to run them all the time whether a PR or a release, so let's do so. --- script/docker-entrypoint.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/script/docker-entrypoint.sh b/script/docker-entrypoint.sh index 6b6bb55f54..fe135e2e7a 100755 --- a/script/docker-entrypoint.sh +++ b/script/docker-entrypoint.sh @@ -42,8 +42,8 @@ else else script/build -DCMAKE_BUILD_TYPE=Debug $FLAGS fi - - pushd build - GTEST_OUTPUT=xml:test-results ctest -V - popd fi + +pushd build +GTEST_OUTPUT=xml:test-results ctest -V +popd