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"