Use the correct make command for coverage generation
timw4mail/rusty-numbers/pipeline/head There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2020-02-20 11:57:04 -05:00
parent 48e6550c48
commit 28dc9e4428
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -19,7 +19,7 @@ pipeline {
stage('Coverage') {
steps {
sh "cargo install cargo-tarpaulin"
sh "make coverage"
sh "make generate-coverage"
}
}
}