Skip to content

Commit 44c95db

Browse files
committed
[#200] Add missing test-result-dir param in testdata configuration files
1 parent a501432 commit 44c95db

File tree

4 files changed

+22
-18
lines changed

4 files changed

+22
-18
lines changed

src/testdata/java/.tcr/toolchain/gradle-wrapper.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ test:
1616
arch: [ "386", amd64, arm64 ]
1717
command: .\gradlew.bat
1818
arguments: [ test ]
19+
test-result-dir: build/test-results/test

src/testdata/java/.tcr/toolchain/gradle.yml

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ test:
88
arch: [ "386", amd64, arm64 ]
99
command: gradle
1010
arguments: [ test ]
11+
test-result-dir: build/test-results/test
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
build:
2-
- os: [darwin, linux]
3-
arch: ["386", amd64, arm64]
2+
- os: [ darwin, linux ]
3+
arch: [ "386", amd64, arm64 ]
44
command: ./mvnw
5-
arguments: [test-compile]
6-
- os: [windows]
7-
arch: ["386", amd64, arm64]
5+
arguments: [ test-compile ]
6+
- os: [ windows ]
7+
arch: [ "386", amd64, arm64 ]
88
command: .\mvnw.cmd
9-
arguments: [test-compile]
9+
arguments: [ test-compile ]
1010
test:
11-
- os: [darwin, linux]
12-
arch: ["386", amd64, arm64]
11+
- os: [ darwin, linux ]
12+
arch: [ "386", amd64, arm64 ]
1313
command: ./mvnw
14-
arguments: [test]
15-
- os: [windows]
16-
arch: ["386", amd64, arm64]
14+
arguments: [ test ]
15+
- os: [ windows ]
16+
arch: [ "386", amd64, arm64 ]
1717
command: .\mvnw.cmd
18-
arguments: [test]
18+
arguments: [ test ]
19+
test-result-dir: target/surefire-reports
+7-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
build:
2-
- os: [darwin, linux, windows]
3-
arch: ["386", amd64, arm64]
2+
- os: [ darwin, linux, windows ]
3+
arch: [ "386", amd64, arm64 ]
44
command: mvn
5-
arguments: [test-compile]
5+
arguments: [ test-compile ]
66
test:
7-
- os: [darwin, linux, windows]
8-
arch: ["386", amd64, arm64]
7+
- os: [ darwin, linux, windows ]
8+
arch: [ "386", amd64, arm64 ]
99
command: mvn
10-
arguments: [test]
10+
arguments: [ test ]
11+
test-result-dir: target/surefire-reports

0 commit comments

Comments
 (0)