File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 33
33
${{ runner.os }}-maven-
34
34
35
35
- name : Verify with Maven
36
- run : mvn --batch-mode --update-snapshots --activate-profiles e2e-test verify
36
+ run : mvn --batch-mode --update-snapshots --activate-profiles e2e verify
37
37
38
38
- name : Upload coverage to Codecov
39
39
uses : codecov/codecov-action@e1dd05cde2ed37d100f658b34ea423728ba1812e
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ The continuous integration runs a set of [gherkin e2e tests](https://github.com/
22
22
23
23
to run alone:
24
24
```
25
- mvn test -P e2e-test
25
+ mvn test -P e2e
26
26
```
27
27
28
28
## Releasing
Original file line number Diff line number Diff line change 11
11
<maven .compiler.source>1.8</maven .compiler.source>
12
12
<maven .compiler.target>${maven.compiler.source} </maven .compiler.target>
13
13
<junit .jupiter.version>5.10.0</junit .jupiter.version>
14
+ <!-- exclusion expression for e2e tests -->
15
+ <testExclusions >**/e2e/*.java</testExclusions >
14
16
<module-name >${groupId} .${artifactId} </module-name >
15
17
</properties >
16
18
488
490
</profile >
489
491
490
492
<profile >
491
- <id >e2e-test </id >
493
+ <id >e2e</id >
492
494
<properties >
493
495
<!-- run the e2e tests by clearing the exclusions -->
494
496
<testExclusions />
You can’t perform that action at this time.
0 commit comments