Skip to content

Commit

Permalink
Remove execution of validateKnownIssues task from test project buil…
Browse files Browse the repository at this point in the history
…d phase (#94)
  • Loading branch information
valfirst authored Jul 10, 2024
1 parent de3cdf7 commit 28a16ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion 3.0/gradle/vividus-test.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ tasks.register('replaceDeprecatedProperties', VividusJavaExec) {
}

check.configure {
dependsOn = [checkDependenciesConsistency, validateKnownIssues, testVividusInitialization]
dependsOn = [checkDependenciesConsistency, testVividusInitialization]
}

[testVividusInitialization, printSteps, validateKnownIssues, countScenarios, countSteps, replaceDeprecatedSteps, replaceDeprecatedProperties].each { task ->
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,5 @@ existing automated tests and infrastructre for them to use Build System 3.0.
[Java 21](https://adoptium.net/temurin/releases/?version=21) or higher.
1. The ability to specify custom prefix for the version of the built artifact is removed. Previously it was possible to
set custom prefix using project property `versionPrefix`, but this feature was not customizable and was not popular.
1. The task `validateKnownIssues` is not included in the project build phase anymore. The correcness of the file with
known issues configuration (`known-issues.json`) is checked in scope of the task `testVividusInitialization`.

0 comments on commit 28a16ca

Please sign in to comment.