Removed python version selector in CI for test step

This commit is contained in:
Harrison Deng 2025-01-09 07:52:31 +00:00
parent e3047d60d7
commit b32a522e39

2
Jenkinsfile vendored
View File

@ -14,7 +14,7 @@ pipeline {
}
stage("unit tests") {
steps {
sh returnStatus: true, script: "python3.11 -m pytest --junitxml=test_results.xml"
sh returnStatus: true, script: "python -m pytest --junitxml=test_results.xml"
xunit checksName: '', tools: [JUnit(excludesPattern: '', pattern: 'test_results.xml', stopProcessingIfError: true)]
}
}