From 82a8e45051d1060ecb45999675c1dde609b7296e Mon Sep 17 00:00:00 2001 From: Brendan Devenney Date: Wed, 1 Aug 2018 15:29:43 +0100 Subject: [PATCH] Scope pipenv check to production dependencies Works around build failures caused by https://github.com/yaml/pyyaml/issues/207 until a safe, stable release lands. --- .travis.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b613da9..a6cc10b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,12 +5,19 @@ cache: python: - "3.6" install: + # Python Dependencies - "pip install pipenv" + # Production Dependencies + - "pipenv install" + # Package Safety Check + - "pipenv check" + # Development Dependencies - "pipenv install --dev" - - "pipenv run yarn install" script: - - "pipenv check" + # Static Code Analysis - "pipenv run prospector" + # Unit Tests - "pipenv run nose2 --with-coverage" after_success: + # Submit Coverage - "pipenv run coveralls"