You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most integration test plugins have a parameter to control integration test runs or piggback on using existing parameters. Can you include a parameter or leverage existing parameters to disable integration tests to temporarily stop the plugin from running for dev builds please and save us some time?
Or support one of the following
-Dcobertura.skip -Dcassandra.skip=true -Dmaven.test.skip -DskipTests -DskipSlowTask=true Djdeb.skip=true
We use failsafe-maven-plugin to run your integration tests and
-DskipITs will skip only the integration tests (i.e. failsafe tests only)
-DskipTests will skip the surefire and failsafe tests
-Dmaven.test.skip=true will skip compiling the tests as well as running them (surefire or failsafe)
The text was updated successfully, but these errors were encountered:
Most integration test plugins have a parameter to control integration test runs or piggback on using existing parameters. Can you include a parameter or leverage existing parameters to disable integration tests to temporarily stop the plugin from running for dev builds please and save us some time?
Or support one of the following
-Dcobertura.skip -Dcassandra.skip=true -Dmaven.test.skip -DskipTests -DskipSlowTask=true Djdeb.skip=true
We use failsafe-maven-plugin to run your integration tests and
-DskipITs will skip only the integration tests (i.e. failsafe tests only)
-DskipTests will skip the surefire and failsafe tests
-Dmaven.test.skip=true will skip compiling the tests as well as running them (surefire or failsafe)
The text was updated successfully, but these errors were encountered: