From f1e678f444ea1ea7f7d5cefd93e320da282ddf7b Mon Sep 17 00:00:00 2001 From: Coleman McFarland Date: Tue, 31 Dec 2024 20:14:43 -0500 Subject: [PATCH] Make our script only run unit tests --- bin/{test-script.sh => ci-unit-tests.sh} | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename bin/{test-script.sh => ci-unit-tests.sh} (81%) diff --git a/bin/test-script.sh b/bin/ci-unit-tests.sh similarity index 81% rename from bin/test-script.sh rename to bin/ci-unit-tests.sh index 6bac5ec..023e121 100644 --- a/bin/test-script.sh +++ b/bin/ci-unit-tests.sh @@ -18,9 +18,8 @@ echo "Installing Raku library dependencies." zef install --deps-only . zef install -/precompile-install . -# prove6 is pre-installed in the open source rakudo-star image -echo "Running tests with prove6." -prove6 xt/* +echo "Running unit tests." +zef test . echo "Done."