summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2019-08-04 17:22:46 +0200
committerSybren A. Stüvel <sybren@stuvel.eu>2019-08-04 17:22:46 +0200
commit222fb5f44796c739b71afff74998e06ff22ca111 (patch)
treee7fa1778f6ca9d4cd8f5a832dc527b81ee3420b6 /.travis.yml
parentb6cebd53fcafd3088fc8361f6d3466166f75410b (diff)
downloadrsa-git-222fb5f44796c739b71afff74998e06ff22ca111.tar.gz
Switch from Pipenv to Poetry
Poetry has a nicer interface, performs more tasks than Pipenv, and is generally more pleasant to use.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index d27ebaf..d0bd7cf 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,11 +19,11 @@ matrix:
# dist: xenial # Bionic has no Python 3.5
install:
- - pip install pipenv
- - pipenv install --dev
+ - pip install poetry
+ - poetry install -v
script:
- - pipenv run py.test
+ - poetry run py.test tests/
after_success:
- - pipenv run coveralls
+ - poetry run coveralls