From 484e31879e8dffd53681658a70b35d6c79553dba Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Fri, 10 Jan 2025 17:28:25 +0000 Subject: [PATCH] Removed test installation step from CI --- Jenkinsfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9b125ee..73313b1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,12 +24,6 @@ pipeline { sh "python -m build" } } - stage("test installation") { - steps { - sh "python -m pip install dist/*.whl --force-reinstall" - sh "automlst -h" - } - } stage("archive") { steps { archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true