diff options
-rw-r--r-- | .travis.yml | 8 |
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 |