5
Ho la seguente .travis.yml:Specificando esatta versione di Python per Travis CI in combinazione con tox
language: python
env:
- TOXENV=py27
- TOXENV=py34
install:
- pip install -U tox
script:
- tox
e la seguente tox.ini:
[tox]
envlist = py27,py34
[testenv]
commands = py.test tests/
deps = -rtests/test_requirements.txt
ho bisogno di Python 3.4.3 , che è available since awhile back in Travis. Come posso specificare questa esatta versione di Python in .travis.yml così tox può usare la versione corretta per l'ambiente py34
?