mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
tox: Fix with-sslib-master install
pip nowadays recognizes that we are asking for two different versions of securesystemslib in the "with-sslib-master" env, and errors out. Instead install normal dependencies first, then install the new securesystemslib separately (this ends up upgrading securesystemslib). Signed-off-by: Jussi Kukkonen <jkukkonen@vmware.com>
This commit is contained in:
parent
66aac38a4a
commit
0870d53d84
1 changed files with 2 additions and 4 deletions
6
tox.ini
6
tox.ini
|
|
@ -29,10 +29,8 @@ install_command = python3 -m pip install {opts} {packages}
|
|||
# Develop test env to run tests against securesystemslib's master branch
|
||||
# Must to be invoked explicitly with, e.g. `tox -e with-sslib-master`
|
||||
[testenv:with-sslib-master]
|
||||
deps =
|
||||
git+https://github.com/secure-systems-lab/securesystemslib.git@master#egg=securesystemslib[crypto,pynacl]
|
||||
-r{toxinidir}/requirements-test.txt
|
||||
--editable {toxinidir}
|
||||
commands_pre =
|
||||
python3 -m pip install git+https://github.com/secure-systems-lab/securesystemslib.git@master#egg=securesystemslib[crypto,pynacl]
|
||||
|
||||
commands =
|
||||
python3 -m coverage run aggregate_tests.py
|
||||
|
|
|
|||
Loading…
Reference in a new issue