use cargo nextest in CI for testing
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good

This commit is contained in:
2024-04-04 13:13:43 +02:00
parent fe52657d11
commit 57adb619b3
2 changed files with 5 additions and 1 deletions

View File

@ -31,7 +31,8 @@ pipeline {
}
stage('Test') {
steps {
sh 'cargo test --all-features'
sh 'cargo nextest r --all-features'
sh 'cargo test --doc'
}
}
stage('Check with all features') {