我希望在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
答案 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