-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3865 from Yelp/vanilla_pip
Use vanilla pip
- Loading branch information
Showing
5 changed files
with
13 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
pip==18.1 | ||
setuptools==39.0.1 | ||
venv-update==3.2.4 | ||
wheel==0.32.3 | ||
pip==24.0 | ||
setuptools==68.0.0 | ||
wheel==0.42.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
-r requirements-bootstrap.txt | ||
coveralls | ||
ephemeral-port-reserve | ||
tox==3.2 | ||
tox-pip-extensions==1.3.0 | ||
tox==3.28.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
[tox] | ||
skipsdist=True | ||
envlist=py38-linux | ||
tox_pip_extensions_ext_venv_update = true | ||
docker_compose_version = 1.26.2 | ||
requires = | ||
tox==3.28.0 | ||
|
||
|
||
[testenv] | ||
basepython = python3.8 | ||
|
@@ -17,7 +19,7 @@ commands = | |
# these are only available at yelp so we optionally install them so that internal devs don't need to | ||
# manually do so (through pip or make) | ||
# that said, most of the time people will run make test which will use tox to install these in a | ||
# faster way (using venv-update) - so this is really just here for anyone that like to just invoke | ||
# faster way - so this is really just here for anyone that like to just invoke | ||
# `tox` directly and with no explicit env | ||
-pip install -r yelp_package/extra_requirements_yelp.txt | ||
|
||
|
@@ -145,7 +147,7 @@ deps = | |
commands = | ||
# TODO: upgrade behave if they ever take this reasonable PR | ||
pip install git+https://github.com/Yelp/[email protected]_533-fork | ||
pylint -E paasta_tools/mesos/ --ignore master.py,task.py | ||
pylint -E {toxinidir}/paasta_tools/mesos/ --ignore master.py,task.py | ||
behave {posargs} | ||
|
||
[testenv:mypy] | ||
|