gpt4 book ai didi

python - 结合 tox 为 Travis CI 指定确切的 Python 版本

转载 作者:太空狗 更新时间:2023-10-29 22:21:56 25 4
gpt4 key购买 nike

我有以下 .travis.yml:

language: python

env:
- TOXENV=py27
- TOXENV=py34

install:
- pip install -U tox

script:
- tox

和以下 tox.ini:

[tox]
envlist = py27,py34

[testenv]
commands = py.test tests/
deps = -rtests/test_requirements.txt

我需要 Python 3.4.3,即 available since awhile back在特拉维斯。我如何在 .travis.yml 中指定这个确切的 Python 版本,以便 tox 可以为 py34 环境使用正确的版本?

最佳答案

灵感来自 pip.travis.yml使用不同的环境变量指定 Travis 矩阵似乎最简单:

matrix:
include:
- python: 3.4.3
env: TOXENV=py34
- python: 2.7
env: TOXENV=py27

关于python - 结合 tox 为 Travis CI 指定确切的 Python 版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31985877/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com