File tree 3 files changed +11
-5
lines changed
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ In order to view aggregate unit test coverage of api-common and GAX in `api-comm
10
10
1 . At the root of the repository, run ` mvn clean test -DenableTestCoverage ` .
11
11
2 . The metrics can be found at ` gapic-generator-java/coverage-report/target/site/jacoco-aggregate/index.html `
12
12
13
- ![ Screenshot 2023-03-21 at 12 25 41 PM] ( https://user-images.githubusercontent.com/66699525/226675190-5225e778-99d4-44d0-8177-29d48d1c35ee .png )
13
+ ![ Screenshot 2023-03-23 at 4 29 36 PM] ( https://user-images.githubusercontent.com/66699525/227346653-b50ec440-71f9-49f4-be21-3976c7f995c7 .png )
14
14
15
15
### Integration Test Coverage
16
16
@@ -19,4 +19,4 @@ In order to view aggregate integration test coverage of api-common and GAX in `a
19
19
1 . At the root of the repository, run ` mvn clean verify -DskipUnitTests -DenableTestCoverage -Penable-integration-tests ` .
20
20
2 . The metrics can be found at ` gapic-generator-java/coverage-report/target/site/jacoco-aggregate/index.html `
21
21
22
- ![ Screenshot 2023-03-21 at 12 26 26 PM] ( https://user-images.githubusercontent.com/66699525/226675461-97a1c4b5-a90f-470d-b0c8-51e63a35a548 .png )
22
+ ![ Screenshot 2023-03-23 at 4 33 11 PM] ( https://user-images.githubusercontent.com/66699525/227348487-f1ba2bb8-7577-4280-a1a1-7aa78e242f12 .png )
Original file line number Diff line number Diff line change 27
27
<groupId >com.google.cloud</groupId >
28
28
<artifactId >gapic-showcase</artifactId >
29
29
<version >0.0.1-SNAPSHOT</version >
30
- <scope >test</scope >
31
30
</dependency >
32
31
<dependency >
33
32
<groupId >com.google.api</groupId >
Original file line number Diff line number Diff line change 27
27
<checkstyle .skip>true</checkstyle .skip>
28
28
<clirr .skip>true</clirr .skip>
29
29
<enforcer .skip>true</enforcer .skip>
30
- <skipUnitTests >true</skipUnitTests >
31
30
</properties >
32
31
33
32
<dependencyManagement >
74
73
<plugin >
75
74
<groupId >org.apache.maven.plugins</groupId >
76
75
<artifactId >maven-surefire-plugin</artifactId >
76
+ <version >3.0.0-M8</version >
77
77
<configuration >
78
- <skip >${skipUnitTests} </skip >
78
+ <!-- Exclude MessagingClientHttpJsonTest which is currently failing.
79
+ See https://github.com/googleapis/gapic-generator-java/issues/1547 -->
80
+ <!-- TODO(1547): Remove this exclusion once MessagingClientHttpJsonTest#updateBlurbTest is fixed -->
81
+ <excludes >
82
+ <exclude >**/MessagingClientHttpJsonTest.java</exclude >
83
+ </excludes >
84
+ <reportNameSuffix >sponge_log</reportNameSuffix >
85
+ <skipTests >${skipUnitTests} </skipTests >
79
86
</configuration >
80
87
</plugin >
81
88
<plugin >
You can’t perform that action at this time.
0 commit comments