Skip to content

Commit 94a5a86

Browse files
committed
chore: fix e2e profile
Signed-off-by: Todd Baert <[email protected]>
1 parent a741568 commit 94a5a86

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/pullrequest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
${{ runner.os }}-maven-
3434
3535
- 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
3737

3838
- name: Upload coverage to Codecov
3939
uses: codecov/codecov-action@e1dd05cde2ed37d100f658b34ea423728ba1812e

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The continuous integration runs a set of [gherkin e2e tests](https://github.com/
2222

2323
to run alone:
2424
```
25-
mvn test -P e2e-test
25+
mvn test -P e2e
2626
```
2727

2828
## Releasing

pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
<maven.compiler.source>1.8</maven.compiler.source>
1212
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
1313
<junit.jupiter.version>5.10.0</junit.jupiter.version>
14+
<!-- exclusion expression for e2e tests -->
15+
<testExclusions>**/e2e/*.java</testExclusions>
1416
<module-name>${groupId}.${artifactId}</module-name>
1517
</properties>
1618

@@ -488,7 +490,7 @@
488490
</profile>
489491

490492
<profile>
491-
<id>e2e-test</id>
493+
<id>e2e</id>
492494
<properties>
493495
<!-- run the e2e tests by clearing the exclusions -->
494496
<testExclusions/>

0 commit comments

Comments
 (0)