在tox安装依赖项之前,将pip版本升级到github中的master分支

时间:2018-03-15 21:10:36

标签: python pip tox

我希望在tox安装依赖项之前,使用像pip 10.0.0.dev0这样的github中的主pip版本将我的pip版本升级到pip install -I https://github.com/pypa/pip/archive/master.zip#egg=pip。有办法吗?

我当前的tox文件如下所示

[tox]
envlist = py36

[testenv]
passenv = *
deps=
  -rrequirements.txt
commands=
  pip --version
  pytest tests

1 个答案:

答案 0 :(得分:1)

我认为在安装依赖项之前升级pip的方法是 停止使用deps并运行commands中的所有内容:

[testenv]
commands=
  pip install -I https://github.com/pypa/pip/archive/master.zip#egg=pip
  pip install -rrequirements.txt
  pytest tests