-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
54 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.cache | ||
smoketest-venv/ |
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,14 @@ | ||
# "Abstract" dependencies for the project | ||
# | ||
# The sibling requirements.txt file contains the corresponding concrete / | ||
# pinned dependencies. You can use pip-tools to automatically update | ||
# requirements.txt from this file: | ||
# https://github.com/jazzband/pip-tools | ||
# pinned dependencies. | ||
# | ||
# To update requirements.txt (e.g. to check for upgrades in package | ||
# dependencies or to add a new dependency to the current file), run the | ||
# following from a new virtual environment: | ||
# | ||
# $ pip install -r requirements.in | ||
# $ pip freeze > requirements.txt | ||
# | ||
requests | ||
zerotest |
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,18 +1,12 @@ | ||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# pip-compile --output-file requirements.txt requirements.in | ||
# | ||
certifi==2017.7.27.1 # via requests | ||
chardet==3.0.4 # via requests | ||
idna==2.6 # via requests | ||
jinja2==2.9.6 # via zerotest | ||
markupsafe==1.0 # via jinja2 | ||
py==1.4.34 # via pytest | ||
pytest==3.2.1 # via zerotest | ||
certifi==2017.7.27.1 | ||
chardet==3.0.4 | ||
idna==2.6 | ||
Jinja2==2.9.6 | ||
MarkupSafe==1.0 | ||
py==1.4.34 | ||
pytest==3.2.1 | ||
requests==2.18.4 | ||
six==1.10.0 # via zerotest | ||
urllib3==1.22 # via requests | ||
werkzeug==0.12.2 # via zerotest | ||
six==1.10.0 | ||
urllib3==1.22 | ||
Werkzeug==0.12.2 | ||
zerotest==1.2.1 |