sadanand48 commented on code in PR #6149:
URL: https://github.com/apache/ozone/pull/6149#discussion_r1475080758
##########
.github/workflows/intermittent-test-check.yml:
##########
@@ -157,31 +139,28 @@ jobs:
export OZONE_REPO_CACHED=true
fi
- test_type=${{ needs.prepare-job.outputs.test_type }}
- args="-DexcludedGroups=unhealthy"
- if [ "$test_type" = "integration" ]; then
- args="$args -pl :ozone-integration-test,:mini-chaos-tests"
- fi
+ args="-DexcludedGroups=native|slow|unhealthy"
if [ "$TEST_METHOD" = "ALL" ]; then
- echo "Running all tests from $TEST_CLASS"
- hadoop-ozone/dev-support/checks/junit.sh $args -Dtest=$TEST_CLASS
+ echo "Running all tests from $TEST_CLASS"
+ set -x
+ hadoop-ozone/dev-support/checks/junit.sh $args
-Dtest="$TEST_CLASS,Abstract*Test\$*"
else
- echo "Running test: $TEST_METHOD from $TEST_CLASS"
- hadoop-ozone/dev-support/checks/junit.sh $args
-Dtest=$TEST_CLASS#$TEST_METHOD
+ echo "Running test: $TEST_METHOD from $TEST_CLASS"
+ set -x
+ hadoop-ozone/dev-support/checks/junit.sh $args
-Dtest="$TEST_CLASS#$TEST_METHOD,Abstract*Test\$*"
Review Comment:
Got it thanks for explaining. So the way to run nested tests i.e via
appending * or $NestedTestName was coming in the way of those checks.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]