-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change Order for Test Class Execution
Order got reshuffled by #7160 after we have already fixed many flaky tests. A fixed order might mitigate this issue. Co-Authored-By: Lara Dvorsek <[email protected]>
- Loading branch information
1 parent
6824f44
commit 048034f
Showing
7 changed files
with
2 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Enables junit5 parallel test execution. Tests are run on one JVM instance. | ||
junit.jupiter.execution.parallel.enabled = true | ||
|
||
# Enables ordering test-classes with JUnit5 by @Order annotation (Used to start integration tests before unit tests). | ||
junit.jupiter.testclass.order.default = org.junit.jupiter.api.ClassOrderer$OrderAnnotation | ||
# Enables ordering test-classes with JUnit5 by class name. | ||
junit.jupiter.testclass.order.default = org.junit.jupiter.api.ClassOrderer$ClassName | ||
|
||
# Enables JUnit5 automatic detection of extensions. | ||
junit.jupiter.extensions.autodetection.enabled = true |