mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-10 15:32:05 -03:30
Closes #43224 Signed-off-by: Václav Muzikář <vmuzikar@redhat.com> Co-authored-by: Martin Bartoš <mabartos@redhat.com> Co-authored-by: Peter Zaoral <pzaoral@redhat.com> Co-authored-by: Steven Hawkins <shawkins@redhat.com> Co-authored-by: Robin Meese <39960884+robson90@users.noreply.github.com>
9 lines
257 B
Bash
Executable File
9 lines
257 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
find . -path '**/src/test/java' -type d \
|
|
| grep -v -E '\./(docs|distribution|misc|operator|((.+/)?tests)|testsuite|test-framework|quarkus)/' \
|
|
| sed 's|/src/test/java||' \
|
|
| sed 's|./||' \
|
|
| sort \
|
|
| tr '\n' ',' \
|
|
| sed 's/,$//' |