Merge pull request #1289 from jku/ci-remove-pip-workaround

ci: Remove workaround for pip resolver issue
This commit is contained in:
Joshua Lock 2021-03-17 10:09:07 +00:00 committed by GitHub
commit 28f96bfc80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,15 +24,13 @@ deps =
# installation (see `skipsdist`), to get relative paths in coverage reports
--editable {toxinidir}
# FIXME: use legacy resolver because https://github.com/pypa/pip/issues/9215
install_command = pip install --use-deprecated=legacy-resolver --pre {opts} {packages}
install_command = pip install --pre {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+http://github.com/secure-systems-lab/securesystemslib.git@master#egg=securesystemslib
git+https://github.com/secure-systems-lab/securesystemslib.git@master#egg=securesystemslib[crypto,pynacl]
-r{toxinidir}/requirements-test.txt
--editable {toxinidir}