Skip to content

Commit aa52aaa

Browse files
committed
Change coverage rules
1 parent 693dc13 commit aa52aaa

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/tests.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,12 @@ jobs:
9090
TARANTOOL_VERSION: ${{ matrix.tarantool-version }}
9191
TARANTOOL_SERVER_USER: root
9292
TARANTOOL_SERVER_GROUP: root
93-
run: ./mvnw -B test -P tarantool-container --file pom.xml
93+
run: ./mvnw -B test -P tarantool-container -Djacoco.destFile=target/jacoco-mt.exec --file pom.xml
94+
- name: Upload jacoco exec results
95+
uses: actions/upload-artifact@v2
96+
with:
97+
name: tests-mt-jacoco
98+
path: "**/jacoco-mt.exec"
9499

95100
merge-jacoco-report:
96101
name: Jacoco Merge Results
@@ -118,6 +123,11 @@ jobs:
118123
name: tests-ee-jacoco
119124
path: .
120125

126+
- uses: actions/download-artifact@v2
127+
with:
128+
name: tests-mt-jacoco
129+
path: .
130+
121131
- name: merge results
122132
run: |
123133
./mvnw package jacoco:merge jacoco:report -DskipTests -Darguments=-DskipTests

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@
259259
</includes>
260260
<excludes>
261261
<exclude>**/*EnterpriseIT.java</exclude>
262+
<exclude>**/*TarantoolContainer*IT.java</exclude>
262263
</excludes>
263264
<systemPropertyVariables>
264265
<logback.configurationFile>${logging.config}</logback.configurationFile>

0 commit comments

Comments
 (0)