Skip to content

Commit

Permalink
not using pipenv.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rehket committed Aug 3, 2019
1 parent bf0a0aa commit 4b3f084
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .gitlab-ci.yml
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
6 changes: 6 additions & 0 deletions dev_req.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
requests
pytest
pytest-cov
coveralls
responses
pyjwt[crypto]

0 comments on commit 4b3f084

Please sign in to comment.