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 31, 2024
1 parent 66683b7 commit aa99293
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.2')
String pyvenvVersion = pyvenv.run(returnStdout: true, script: 'python --version')
echo pyvenvVersion
assert pyvenvVersion.trim() == 'Python 3.10.3'
assert pyvenvVersion.trim() == 'Python 3.10.2'
}
}
}
Expand Down

0 comments on commit aa99293

Please sign in to comment.