This repository has been archived by the owner on Feb 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First working cut at using Pipfile with Pyup.io (#422)
- Loading branch information
1 parent
626d674
commit f84df27
Showing
5 changed files
with
55 additions
and
28 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
requirements: | ||
- Pipfile |
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 @@ | ||
language: python | ||
python: 2.7 | ||
install: | ||
- pip install -r requirements.txt | ||
- pip install pipenv | ||
script: | ||
- flake8 | ||
- pipenv check | ||
- pipenv check --style . | ||
notifications: | ||
email: [email protected] |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[[source]] | ||
|
||
url = "https://pypi.python.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
|
||
[dev-packages] | ||
|
||
|
||
|
||
[packages] | ||
|
||
BeautifulSoup = "==3.2.1" | ||
"flake8" = "==3.5.0" | ||
"flake8-isort" = "==2.3" | ||
mozlog = "==3.7" | ||
PyPOM = "==1.2.0" | ||
pytest = "==3.4.0" | ||
pytest-metadata = "==1.5.1" | ||
pytest-selenium = "==1.11.4" | ||
pytest-variables = "==1.7.1" | ||
pytest-xdist = "==1.22.0" | ||
requests = "==2.18.4" | ||
pyotp = "==2.2.6" |
This file was deleted.
Oops, something went wrong.