Skip to content

Commit 1139628

Browse files
committed
Fix travis to run with pipenv
1 parent 5c5f0eb commit 1139628

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
language: python
22
python:
33
- "3.6"
4+
env:
5+
global:
6+
- PIPENV_VENV_IN_PROJECT=1
7+
- PIPENV_IGNORE_VIRTUALENVS=1
48
before_install:
59
- pip install pipenv
610
install:
7-
- pipenv install --system
8-
script: pytest
11+
- pipenv install
12+
script: pipenv run pytest

0 commit comments

Comments
 (0)