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 3d69d4e commit c3f5861Copy full SHA for c3f5861
1 file changed
.github/workflows/unit-test.yml
@@ -100,7 +100,18 @@ jobs:
100
ST_PLUGIN_NAME: ${{ matrix.plugin }}
101
run: |
102
cd supertokens-root
103
- ./gradlew test ${{ steps.split-tests.outputs.test-suite }}
+ echo "./gradlew test \\" > test.sh
104
+ chmod +x test.sh
105
+ IFS=',' read -ra TESTS <<< "${{ steps.split-tests.outputs.test-suite }}"
106
+ for test in "${TESTS[@]}"; do
107
+ test_name="${test%.java}"
108
+ test_name="${test_name#src/test/java/}"
109
+ test_name="${test_name//\//.}"
110
+ echo "--tests $test_name \\" >> test.sh
111
+ done
112
+ echo "" >> test.sh
113
+ cat test.sh
114
+ ./test.sh
115
- name: Publish Test Report
116
uses: mikepenz/action-junit-report@v5
117
if: always()
0 commit comments