Update 'Jenkinsfile'

Removed uninformative TODO comment
This commit is contained in:
Harrison Deng 2023-06-23 15:28:55 +00:00
parent fa2d978199
commit 55a1da352f

1
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