From b32a522e39de957aeb9a61f09c2986b0e264a23f Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Thu, 9 Jan 2025 07:52:31 +0000 Subject: [PATCH] Removed python version selector in CI for test step --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7c225d8..fb99348 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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)] } }