Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #412 from bear/remove-pypy3-for-now
Browse files Browse the repository at this point in the history
remove pypy3 for now and refactor Makefile a bit to remove redundancy
  • Loading branch information
bear authored Nov 24, 2016
2 parents 83bc08a + bf9e5ee commit 5c5ddbd
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 5c5ddbd

Please sign in to comment.