diff --git a/.travis.yml b/.travis.yml index 5005e35..6acf0a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,13 +5,14 @@ cache: pip python: - "3.6-dev" - "3.7-dev" + - "3.8-dev" install: - - pip install pipenv - - pipenv install -d . + - pip install poetry + - poetry install script: - - pipenv run nosetests-3.4 --with-coverage --cover-package=pymispwarninglists -d + - poetry run nosetests-3.4 --with-coverage --cover-package=pymispwarninglists -d after_success: - codecov