Fix Jenkins virtualenv cleanup (#22356)

This commit is contained in:
Jeremy Bowman
2019-11-21 11:05:05 -05:00
committed by GitHub
parent 889daa8baf
commit 052f853ec1
5 changed files with 16 additions and 11 deletions

View File

@@ -16,7 +16,7 @@ def pythonTestCleanup() {
archiveArtifacts allowEmptyArchive: true, artifacts: 'reports/**/*,test_root/log/**/*.log,**/nosetests.xml,*.log'
sendSplunkFile excludes: '', includes: '**/timing*.log', sizeLimit: '10MB'
junit '**/nosetests.xml'
sh '''source $HOME/edx-venv/bin/activate
sh '''source $HOME/edx-venv-$PYTHON_VERSION/edx-venv/bin/activate
bash scripts/xdist/terminate_xdist_nodes.sh'''
}