hangc0276 opened a new pull request, #3367:
URL: https://github.com/apache/bookkeeper/pull/3367

   ### Motivation
   The `bookie-tests` CI runs the following tests.
   ```
   - name: Run bookie tests
           run: mvn -B -nsu -pl bookkeeper-server test 
-Dtest="org.apache.bookkeeper.bookie.*Test" -DfailIfNoTests=false 
-Dorg.slf4j.simpleLogger.defaultLogLevel=INFO
   ```
   
   For the `remaining-tests` CI runs the following tests.
   ```bash
   - name: Run remaining tests
           run: mvn -B -nsu -am -pl bookkeeper-server clean install test 
-Dtest="!org.apache.bookkeeper.client.**,!org.apache.bookkeeper.bookie.**,!org.apache.bookkeeper.replication.**,!org.apache.bookkeeper.tls.**"
 -DfailIfNoTests=false -Dorg.slf4j.simpleLogger.defaultLogLevel=INFO
   ```
   
   The problem is that `bookie-tests` only run tests with the name 
`org.apache.bookkeeper.bookie.*Test`, however, the `remaining-tests` exclude 
tests with name `org.apache.bookkeeper.bookie.**`. It leads to a lot of tests 
in `org.apache.bookkeeper.bookie.*` package doesn't run at all in CI.
   
   ### Modification
   Turn on `org.apache.bookkeeper.bookie.**` tests in `bookie-tests` CI. 
   
   I have been testing on my desktop, there are many tests can't pass, I may 
need more time to make those failed tests to be passed.


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

Reply via email to