如何在 TravisCI 中使用 python-3.6.7

我有一个使用 TravisCI 的 Python 项目,但我的pytest命令在 Travis 上失败并在本地机器上传递。我认为原因是我在本地机器上使用了 Python-3.6.7,而 Travis 使用的是 Python -3.6.3

我的.travis.yml文件:


language: python

python:

  - "3.6"

  - "3.6-dev"  # 3.6 development branch

# command to install dependencies

before_install:

  # install python 3.6.7

install:

  - pip install -r requirements.txt

  - pip install -U pytest

# command to run tests

script:

  - pytest

我的本地 pytest 日志:


platform linux -- Python 3.6.7, pytest-4.0.2, py-1.7.0, pluggy-0.8.0

# tests passed.  

我的 travis pytest 日志:


platform linux -- Python 3.6.3, pytest-4.0.2, py-1.7.0, pluggy-0.8.0  

#tests failed.

所以我假设使用 3.6.7 Python 版本将修复我的测试,有人可以帮忙吗?


我试过的:


pip install -U python 不起作用。


蛊毒传说
浏览 207回答 3
3回答

慕后森

我dist: xenial在我的 travis 文件中使用了这样的:dist: xenial  python:  - "3.6"   ----  so on ---  它默认带有 Python 3.6.7。:)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python