adoroszlai commented on code in PR #6149:
URL: https://github.com/apache/ozone/pull/6149#discussion_r1475077107


##########
.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:
   With `TestLegacyReplicationManager` the file is found and artifact name is 
valid, but Surefire doesn't run any tests.
   
   `TestLegacyReplicationManager$Misc` (or similar) or 
`TestLegacyReplicationManager$*` select the tests in Surefire, but do not pass 
the file find.  Second one is also invalid artifact name.  (I don't know if the 
first one is valid, it didn't reach that part of the check.)



-- 
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]

Reply via email to