File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
integration-tests/techempower-postgres-it Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 8282 // Mainly, to allow CI to test the latest versions of Vert.X
8383 // Example:
8484 // ./gradlew build -PvertxSqlClientVersion=4.0.0-SNAPSHOT
85- if ( ! project. hasProperty(' vertxSqlClientVersion' ) ) {
85+ if ( ! project. hasProperty( ' vertxSqlClientVersion' ) ) {
8686 vertxSqlClientVersion = ' 4.4.4'
8787 }
8888
Original file line number Diff line number Diff line change @@ -61,12 +61,12 @@ tasks.withType( Test ).configureEach {
6161 systemProperty ' docker' , project. properties[' docker' ] ?: true
6262 systemProperty ' org.hibernate.reactive.common.InternalStateAssertions.ENFORCE' , ' true'
6363
64- if ( project. hasProperty( ' includeTests' ) ) {
65- // Example: ./gradlew testAll -PincludeTests=DefaultPortTest
66- filter {
64+ if ( project. hasProperty( ' includeTests' ) ) {
65+ // Example: ./gradlew testAll -PincludeTests=DefaultPortTest
66+ filter {
6767 includeTestsMatching project. properties[' includeTests' ] ?: ' *' as String
6868 }
69- }
69+ }
7070}
7171
7272// Print a summary of the results of the tests (number of failures, successes and skipped)
9999 attributes ' Implementation-Version' : project. version
100100 }
101101 from {
102- configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree(it ) }
102+ configurations. runtimeClasspath. collect { it. isDirectory() ? it : zipTree( it ) }
103103 }
104104}
105105
You can’t perform that action at this time.
0 commit comments