From 2f77ebd5cc2e0c5ff7b7c60e211241aba71801c9 Mon Sep 17 00:00:00 2001 From: Braxton Mckee Date: Thu, 16 Apr 2020 09:44:53 -0400 Subject: [PATCH] Use 'safety' (which is the free 1month delayed vulnerability database) instead of pipenv. Pipenv is borking out because it depends on an expired api key. See https://github.com/pypa/pipenv/issues/4188 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7167e9561..f93954b57 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,8 +33,9 @@ jobs: python: 3.6 install: - pip install pipenv + - pip install safety script: - - pipenv check --ignore 37752 || (sleep 60; pipenv check --ignore 37752) || (sleep 60; pipenv check --ignore 37752) + - (pipenv lock --requirements | safety check --stdin) || (sleep 60; pipenv lock --requirements | safety check --stdin) || (sleep 60; pipenv lock --requirements | safety check --stdin) - name: "Unit Tests (3.6)" python: 3.6