summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2021-02-24 12:29:17 +0100
committerSybren A. Stüvel <sybren@stuvel.eu>2021-02-24 12:44:41 +0100
commit96a7a7dc092f9706be5005d538ed2b1cf9f07dae (patch)
treea9877152d4231e23d7f3b50515047aa953089c46
parent2603c83effa593ae1e0662e491425b335eaed765 (diff)
downloadrsa-git-temp-poetry.tar.gz
.travis.yml: use Poetry instead of Pipenvtemp-poetry
-rw-r--r--.travis.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 094381d..6d6442c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,11 +13,11 @@ python:
install:
- pip install -U pip setuptools # https://github.com/pypa/virtualenv/issues/1630
- - pip install pipenv
- - pipenv install --dev
+ - pip install poetry
+ - poetry install
script:
- - pipenv run py.test tests/
+ - poetry run py.test tests/
after_success:
- - pipenv run coveralls
+ - poetry run coveralls