Basic filtering system and tests completed
Some checks failed
ydeng/modvcfsamples/pipeline/head There was a failure building this commit

This commit is contained in:
2023-06-26 17:20:40 +00:00
parent f2bdbaa0b0
commit 515d790844
11 changed files with 158 additions and 13 deletions

5
Jenkinsfile vendored
View File

@@ -9,7 +9,6 @@ pipeline {
}
stage("unit tests") {
steps {
// TODO Update the
sh returnStatus: true, script: "python -m pytest --junitxml=unit_tests.xml --cov-report xml:test_coverage.xml --cov=program"
xunit checksName: '', tools: [JUnit(excludesPattern: '', pattern: 'test_results.xml', stopProcessingIfError: true)]
cobertura autoUpdateHealth: false, autoUpdateStability: false, coberturaReportFile: 'test_coverage.xml', failUnhealthy: false, failUnstable: false, maxNumberOfBuilds: 64, lineCoverageTargets: '50, 0, 0', methodCoverageTargets: '50, 0, 0', onlyStable: false, sourceEncoding: 'ASCII', zoomCoverageChart: false
@@ -18,7 +17,7 @@ pipeline {
stage("build") {
steps {
sh "python -m build"
// Additional build steps go here
// TODO Additional build steps go here
}
}
stage("test installation") {
@@ -30,7 +29,7 @@ pipeline {
stage("archive") {
steps {
archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl'
// Additional archival or documentation steps go here
// TODO Additional archival or documentation steps go here
}
}
stage("publish") {