You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@bookkeeper.apache.org by GitBox <gi...@apache.org> on 2022/06/26 14:56:48 UTC

[GitHub] [bookkeeper] hangc0276 opened a new pull request, #3367: Fix bookie CI test not run

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: issues-unsubscribe@bookkeeper.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [bookkeeper] Shoothzj merged pull request #3367: Fix bookie CI test not run

Posted by GitBox <gi...@apache.org>.
Shoothzj merged PR #3367:
URL: https://github.com/apache/bookkeeper/pull/3367


-- 
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: issues-unsubscribe@bookkeeper.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org