summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 42d4d16..0fed68b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,17 +14,19 @@ matrix:
include:
- python: 3.5
dist: xenial # Bionic has no Python 3.5
+ script: pip install zipp
# Disabled, see https://github.com/sybrenstuvel/python-rsa/issues/131
#- python: pypy3.5
# dist: xenial # Bionic has no Python 3.5
install:
- - pip install poetry
- - poetry install -v
+ - pip install -U pip setuptools # https://github.com/pypa/virtualenv/issues/1630
+ - pip install pipenv
+ - pipenv install --dev
script:
- - poetry run py.test tests/
+ - pipenv run py.test tests/
after_success:
- - poetry run coveralls
+ - pipenv run coveralls