We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eef5d97 commit 4870a20Copy full SHA for 4870a20
1 file changed
.github/workflows/unit-test.yml
@@ -101,15 +101,17 @@ jobs:
101
cd supertokens-root
102
echo "./gradlew test \\" > test.sh
103
chmod +x test.sh
104
- IFS=',' read -ra TESTS <<< "${{ steps.split-tests.outputs.test-suite }}"
+ IFS=' ' read -ra TESTS <<< "${{ steps.split-tests.outputs.test-suite }}"
105
for test in "${TESTS[@]}"; do
106
test_name="${test%.java}"
107
test_name="${test_name#src/test/java/}"
108
test_name="${test_name//\//.}"
109
echo " --tests $test_name \\" >> test.sh
110
done
111
echo "" >> test.sh
112
+ echo "this is the test command:"
113
cat test.sh
114
+ echo "--------------------------------"
115
./test.sh
116
- name: Publish Test Report
117
uses: mikepenz/action-junit-report@v5
0 commit comments