From 1da52c04d47bf1339f563203b01719ac1875ea5e Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 24 Jan 2017 23:04:25 -0500 Subject: [PATCH] attempted fix for travis --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 3fe1e1f4..d3822803 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,8 @@ init: pip install pipenv - pipenv install --dev --requirements > requirements.txt - pip install -r requirements.txt + pipenv lock + pipenv install --dev test: # This runs all of the tests. To run an individual test, run py.test with @@ -11,7 +11,7 @@ test: pipenv run py.test tests coverage: - py.test --cov-config .coveragerc --verbose --cov-report term --cov-report xml --cov=requests tests + pipenv run py.test --cov-config .coveragerc --verbose --cov-report term --cov-report xml --cov=requests tests certs: curl http://ci.kennethreitz.org/job/ca-bundle/lastSuccessfulBuild/artifact/cacerts.pem -o requests/cacert.pem