Skip to content

Commit

Permalink
Merge pull request #11833 from murdos/fix/skip-tests
Browse files Browse the repository at this point in the history
build(generator): correctly handle mvn verify -DskipTests
  • Loading branch information
pascalgrimaud authored Jan 31, 2025
2 parents bec0dad + 3c89d39 commit e4e6fad
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,7 @@
</goals>
<phase>test</phase>
<configuration>
<skip>${skipTests}</skip>
<arguments>run test:unit:coverage</arguments>
<npmInheritsProxyConfigFromMaven>false</npmInheritsProxyConfigFromMaven>
</configuration>
Expand All @@ -540,6 +541,7 @@
</goals>
<phase>verify</phase>
<configuration>
<skip>${skipTests}</skip>
<arguments>run test:component:headless</arguments>
<npmInheritsProxyConfigFromMaven>false</npmInheritsProxyConfigFromMaven>
</configuration>
Expand All @@ -551,6 +553,7 @@
</goals>
<phase>verify</phase>
<configuration>
<skip>${skipTests}</skip>
<arguments>run test:coverage:check</arguments>
<npmInheritsProxyConfigFromMaven>false</npmInheritsProxyConfigFromMaven>
</configuration>
Expand Down

0 comments on commit e4e6fad

Please sign in to comment.