From 19c6a2b9bda44444b9b138e6725b9ed7758e56b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 18 Dec 2018 22:13:42 +0400 Subject: [PATCH] :bug: Install dev-packages with pipenv, not pip --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 68eacb476..7b0260c01 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,8 +7,8 @@ python: - "3.7-dev" install: - - pip install pipenv --dev - - pipenv install + - pip install pipenv + - pipenv install --dev script: - bash scripts/test.sh