mirror of
https://github.com/keycloak/keycloak.git
synced 2026-02-03 20:39:33 -05:00
Closes #38888 Signed-off-by: Ryan Emerson <remerson@ibm.com> Signed-off-by: Alexander Schwartz <alexander.schwartz@ibm.com> Signed-off-by: Pedro Ruivo <1492066+pruivo@users.noreply.github.com> Co-authored-by: Pedro Ruivo <pruivo@users.noreply.github.com> Co-authored-by: Alexander Schwartz <alexander.schwartz@ibm.com>
9 lines
No EOL
252 B
Bash
Executable file
9 lines
No EOL
252 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
find . -path '**/src/test/java' -type d \
|
|
| grep -v -E '\./(docs|distribution|operator|((.+/)?tests)|testsuite|test-framework|quarkus)/' \
|
|
| sed 's|/src/test/java||' \
|
|
| sed 's|./||' \
|
|
| sort \
|
|
| tr '\n' ',' \
|
|
| sed 's/,$//' |