Skip to content

Commit 4870a20

Browse files
committed
fix: test command
1 parent eef5d97 commit 4870a20

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/unit-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,17 @@ jobs:
101101
cd supertokens-root
102102
echo "./gradlew test \\" > test.sh
103103
chmod +x test.sh
104-
IFS=',' read -ra TESTS <<< "${{ steps.split-tests.outputs.test-suite }}"
104+
IFS=' ' read -ra TESTS <<< "${{ steps.split-tests.outputs.test-suite }}"
105105
for test in "${TESTS[@]}"; do
106106
test_name="${test%.java}"
107107
test_name="${test_name#src/test/java/}"
108108
test_name="${test_name//\//.}"
109109
echo " --tests $test_name \\" >> test.sh
110110
done
111111
echo "" >> test.sh
112+
echo "this is the test command:"
112113
cat test.sh
114+
echo "--------------------------------"
113115
./test.sh
114116
- name: Publish Test Report
115117
uses: mikepenz/action-junit-report@v5

0 commit comments

Comments
 (0)