-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DataProviderRunner.class do not use rerunFailingTestsCount in parallel #113
Comments
Puh ... I at least identified the problem:
junit-dataprovider relays on the filter description but the one from
Having only a single failed test case, though, the filter description does not contain an |
@aaschmid Is the any plans when you could fix this issue? |
@emaks: there is but I was and I am a bit busy with some complex private issue ... How urgent is it for you? Sounds like you have a lot blinking test cases, do you? |
@aaschmid |
Understood. Can you try version "2.4-SNAPSHOT" which I just created and uploaded to Maven Central Snapshop Repository?
|
works as expected with this version |
#113) Maven create a custom filter containing one or more valid test cases to run. For one test case this works but for multiple test cases the filter description contains an "OR". If this "OR" is found, the filter request needs to be forwarded to the original `filter.shouldRun(...)`. Signed-off-by: Andreas Schmid <[email protected]>
Thanks for the feedback. I will release version 2.4 as soon as oss.sonatype.org is available again. |
Release is done and will appear on MavenCentral within the next hours, thanks @emaks for the feedback. |
* upstream/master: (129 commits) add license header to every delivered file Update README.md Update and rename LICENSE.md to LICENSE downgrade wrapper due to TNG#119 next SNAPSHOT version 2.7 prepare next release version fix compatibility with 5.5.0 and above (TNG#118) Create SECURITY.md add more JDKs to run travis CI against prepare next release version v2.5 fix compatibility issue with new junit-jupiter version 5.4.* (TNG#118) remove no longer required workaround as junit-jupiter compatibility is now >= 5.4.0 anyway upgrade gradle-cpd-plugin to latest upgrade to new gradle-cpd-plugin version 1.3 replace ' with " upgrade Gradle wrapper to 5.1.1 upgrade Gradle wrapper to 5.0 prepare v2.4 fix "rerun failing tests" Maven features if multiple test cases failed (TNG#113) add rules acceptance test for junit4/ (TNG#22) ...
Maven version 3.5.4
I have maven project with next pom.xml
And 2 test classes
and
Actual result
If I run
mvn test
tests will be executed without re-run and failExpected result
Tests will pass(with re-run)
Note
If I change
on
Test will pass
The text was updated successfully, but these errors were encountered: