summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Falcão <gabriel@nacaolivre.org>2018-04-28 00:54:30 -0300
committerGabriel Falcão <gabriel@nacaolivre.org>2018-04-28 00:54:30 -0300
commit071974f9284daf02b619780771f287893aed5f62 (patch)
treeaf75219e10b657c3e9f11d06ccaece94bfa3d5cb
parente8e303dd8742d68b13aff31dd30bc3f37a97ae6e (diff)
downloadhttpretty-py3.tar.gz
skip lockpy3
-rw-r--r--.travis.yml2
-rw-r--r--Makefile6
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 63a4158..8444172 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,7 +21,7 @@ env:
install:
- pip install pipenv
- - pipenv install --dev
+ - pipenv install --dev --skip-lock
script:
- make $TEST_TYPE
diff --git a/Makefile b/Makefile
index bf3decc..2896402 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ export PYTHONASYNCIODEBUG :=1
dependencies:
@pip install -U pip
@pip install pipenv
- @pipenv install --dev
+ @pipenv install --dev --skip-lock
test: lint unit functional pyopenssl
@@ -34,8 +34,8 @@ functional: prepare
pyopenssl: prepare
@echo "Running PyOpenSSL mocking tests ..."
- @pipenv install pyOpenSSL==16.1.0
- @pipenv install ndg-httpsclient==0.4.2
+ @pipenv install --skip-lock pyOpenSSL==16.1.0
+ @pipenv install --skip-lock ndg-httpsclient==0.4.2
@pipenv run nosetests --rednose -x --with-coverage --cover-package=httpretty -s tests/pyopenssl
clean: