File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 37
37
set(' snippetsDir' , file(' build/generated-snippets' ))
38
38
applicationProperties = System . getProperty(' applicationProperties' , ' ./src/test/resources/test-config/application-test.properties' )
39
39
pythonExecutable = System . getProperty(' pythonExecutable' , ' file:///usr/bin/python3' )
40
+ userDir = System . getProperty(' user.dir' )
40
41
}
41
42
42
43
dependencies {
@@ -89,11 +90,13 @@ dependencies {
89
90
test {
90
91
outputs. dir snippetsDir
91
92
finalizedBy jacocoTestReport
92
- print (" Running tests with configuration: ${ applicationProperties} " )
93
- print (" Running tests with python: ${ pythonExecutable} " )
93
+ println (" Running tests with configuration: ${ applicationProperties} " )
94
+ println (" Running tests with python: ${ pythonExecutable} " )
95
+ println (" Running tests in directory: ${ userDir} " )
94
96
environment ' spring.config.location' , applicationProperties
95
97
environment ' pythonLocation' , pythonExecutable
96
98
useJUnitPlatform()
99
+ testLogging. showStandardStreams = true
97
100
}
98
101
99
102
jacoco {
You can’t perform that action at this time.
0 commit comments