Skip to content

Commit

Permalink
dropme: test installing a new python version
Browse files Browse the repository at this point in the history
  • Loading branch information
nre-ableton committed Jan 29, 2024
1 parent f66ab6f commit d7eca53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ eventRecorder.timedStage('Integration Test') {
assert venvVersion.startsWith('Python 3')

echo 'Test VirtualEnv.createWithPyenv'
Object pyvenv = pyenv.createVirtualEnv('3.10.3')
Object pyvenv = pyenv.createVirtualEnv('3.10.1')
String pyvenvVersion = pyvenv.run(returnStdout: true, script: 'python --version')
echo pyvenvVersion
assert pyvenvVersion.trim() == 'Python 3.10.3'
assert pyvenvVersion.trim() == 'Python 3.10.1'
}
}
}
Expand Down

0 comments on commit d7eca53

Please sign in to comment.