Switching circleci to run verify instead of test; temp bumping required ratio to 99, to see a failure

This commit is contained in:
2022-07-07 08:33:48 -05:00
parent 58157ff310
commit 7c2c903692
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ jobs:
executor: java17 executor: java17
steps: steps:
- run_maven: - run_maven:
maven_subcommand: test maven_subcommand: verify
- slack/notify: - slack/notify:
event: fail event: fail

View File

@ -45,7 +45,7 @@
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation> <maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
<maven.compiler.showWarnings>true</maven.compiler.showWarnings> <maven.compiler.showWarnings>true</maven.compiler.showWarnings>
<coverage.haltOnFailure>true</coverage.haltOnFailure> <coverage.haltOnFailure>true</coverage.haltOnFailure>
<coverage.instructionCoveredRatioMinimum>0.80</coverage.instructionCoveredRatioMinimum> <coverage.instructionCoveredRatioMinimum>0.99</coverage.instructionCoveredRatioMinimum>
</properties> </properties>
<dependencies> <dependencies>