Setting Up A Specific Python In Jenkins
I am quite new with configuring Jenkins or Python but I have to set up a unitary test in Jenkins. My program is in Python, but only works on Python 2.6 whereas the Jenkins version
Solution 1:
If you want your program to run with a specific version of the python interpreter, you indicate it in the shebang
#!/usr/bin/python2.6#your code here
Post a Comment for "Setting Up A Specific Python In Jenkins"