From d745cb6d1966a46573d5bb484fd115b0842a01b1 Mon Sep 17 00:00:00 2001 From: Mihaly Lengyel Date: Tue, 29 Oct 2024 14:47:53 +0100 Subject: [PATCH] test: try and improve flaky tests --- .circleci/doTests.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.circleci/doTests.sh b/.circleci/doTests.sh index 9089747b1..3cc3df115 100755 --- a/.circleci/doTests.sh +++ b/.circleci/doTests.sh @@ -172,17 +172,12 @@ do if [ -d ~/junit ] then echo "Copying output from core" - ls ~/supertokens-root/supertokens-core/build/test-results/test/ cp ~/supertokens-root/supertokens-core/build/test-results/test/*.xml ~/junit/ - cp ~/supertokens-root/supertokens-core/build/test/test/*.xml ~/junit/ if [[ $pluginToTest != "sqlite" ]] then echo "Copying output from plugin" - ls -R ~/supertokens-root/supertokens-$pluginToTest-plugin/ - echo "Using path: ~/supertokens-root/supertokens-$pluginToTest-plugin/build/test/test/.xml" - cp ~/supertokens-root/supertokens-$pluginToTest-plugin/build/test/test/.xml ~/junit/ - cp ~/supertokens-root/supertokens-$pluginToTest-plugin/build/test-results/test/.xml ~/junit/ + cp ~/supertokens-root/supertokens-$pluginToTest-plugin/build/test-results/test/*.xml ~/junit/ fi fi