From bf9e5eeb04be085a537834f0888281f07b5f8382 Mon Sep 17 00:00:00 2001 From: "bear (Mike Taylor)" Date: Thu, 24 Nov 2016 14:36:31 -0500 Subject: [PATCH] remove pypy3 for now and refactor Makefile a bit to remove redundancy --- Makefile | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 08153cfe..e8b8a9f1 100644 --- a/Makefile +++ b/Makefile @@ -11,12 +11,14 @@ help: env: pip install -Ur requirements.txt -dev: env +pyenv: pyenv install -s 2.7.11 pyenv install -s 3.5.1 pyenv install -s pypy-5.3.1 - pyenv install -s pypy3-2.4.0 - pyenv local 2.7.11 3.5.1 pypy-5.3.1 pypy3-2.4.0 + # pyenv install -s pypy3-2.4.0 + pyenv local 2.7.11 3.5.1 pypy-5.3.1 # pypy3-2.4.0 + +dev: env pyenv pip install -Ur requirements.testing.txt info: @@ -48,13 +50,7 @@ coverage: clean coverage html coverage report -ci: - pyenv install -s 2.7.11 - pyenv install -s 3.5.1 - pyenv install -s pypy-5.3.1 - pyenv install -s pypy3-2.4.0 - pyenv local 2.7.11 3.5.1 pypy-5.3.1 pypy3-2.4.0 - pip install -Ur requirements.testing.txt +ci: pyenv tox CODECOV_TOKEN=`cat .codecov-token` codecov