Skip to content

Commit

Permalink
Scope pipenv check to production dependencies (#23)
Browse files Browse the repository at this point in the history
Works around build failures caused by yaml/pyyaml#207 until a safe, stable release lands.

Signed-off-by: Brendan Devenney <brendan@devenney.io>
  • Loading branch information
devenney committed Aug 1, 2018
1 parent f9edc9d commit bb146fb
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .travis.yml
Expand Up @@ -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"

0 comments on commit bb146fb

Please sign in to comment.