simplify getting the test names (#1416)

* fix

* make it a constant

* placeholder commit
This commit is contained in:
erabii
2023-08-22 21:28:12 +03:00
committed by GitHub
parent 3dada6fc93
commit 8079dcd36f
2 changed files with 5 additions and 3 deletions

View File

@@ -8,9 +8,9 @@ runs:
run: |
# find all the tests that are supposed to be run, but don't actually run them.
# this is achieved via: 'spring.cloud.k8s.skip.tests=true' in DisabledTestsCondition
./mvnw clean install -B -Dskip.build.image=true -Dspring.cloud.k8s.skip.tests=true \
./mvnw test -B -Dskip.build.image=true -Dspring.cloud.k8s.skip.tests=true \
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=error \
-T 1C > /tmp/tests.txt
-T 1C -q > /tmp/tests.txt
- name: show result
if: always()