-
Notifications
You must be signed in to change notification settings - Fork 0
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
2 changed files
with
12 additions
and
4 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,17 +1,19 @@ | ||
python36_test: | ||
image: python:3.6.8-alpine3.9 | ||
script: | ||
- pip install pipenv | ||
- pipenv install --dev | ||
- pipenv install '-e .' | ||
- pipenv shell pytest --cov=febrl tests/ | ||
- python -m pip install -U pip | ||
- python -m pip install -r dev_req.txt | ||
- python -m pip install -e . | ||
- pytest --cov=febrl tests/ | ||
|
||
|
||
python37_test: | ||
image: python:3.7.4-alpine3.9 | ||
script: | ||
- apk add git=2.20.1-r0 # Needed for coveralls | ||
- apk upgrade | ||
- python -m pip install -U pip | ||
- python -m pip install -r dev_req.txt | ||
- pip install -e . | ||
- pytest --cov=febrl tests/ | ||
- coveralls |
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,6 @@ | ||
requests | ||
pytest | ||
pytest-cov | ||
coveralls | ||
responses | ||
pyjwt[crypto] |