From 6c14a135eac1273a5b605a87dd6667900abf9d6a Mon Sep 17 00:00:00 2001 From: Mihaly Lengyel Date: Tue, 29 Oct 2024 11:59:06 +0100 Subject: [PATCH] test: try and improve flaky tests --- .circleci/doTests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/doTests.sh b/.circleci/doTests.sh index 69d1f47bb..1180abf83 100755 --- a/.circleci/doTests.sh +++ b/.circleci/doTests.sh @@ -172,14 +172,14 @@ do if [ -d ~/junit ] then echo "Copying output from core" - ls ~/supertokens-root/supertokens-core/build/test-results/test/*.xml + ls ~/supertokens-root/supertokens-core/build/test-results/test/ cp ~/supertokens-root/supertokens-core/build/test-results/test/*.xml ~/junit/ if [[ $pluginToTest -ne "sqlite" ]] then echo "Copying output from plugin" echo "Using path: ~/supertokens-root/supertokens-$pluginToTest-plugin/build/test-results/test/*.xml" - ls "~/supertokens-root/supertokens-$pluginToTest-plugin/build/test-results/test/*.xml" + ls "~/supertokens-root/supertokens-$pluginToTest-plugin/build/test-results/test/" cp "~/supertokens-root/supertokens-$pluginToTest-plugin/build/test-results/test/*.xml" ~/junit/ fi fi