Skip to content

Commit

Permalink
Merge pull request #379 from bear/fix/issue378
Browse files Browse the repository at this point in the history
Update Makefile for use with py27, py35, pypy, pypy3.
  • Loading branch information
jeremylow committed Sep 14, 2016
2 parents aad1189 + 7f8d2f0 commit c69fc16
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ env:
pip install -Ur requirements.txt

dev: env
pip install -Ur requirements.testing.txt
pyenv install -s 2.7.11
pyenv install -s 3.5.2
pyenv install -s pypy-5.3
pyenv local 2.7.11 3.5.2 pypy-5.3
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

info:
@python --version
Expand Down Expand Up @@ -47,7 +48,14 @@ coverage: clean
coverage html
coverage report

ci: tox coverage
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
tox
CODECOV_TOKEN=`cat .codecov-token` codecov

build: clean
Expand Down

0 comments on commit c69fc16

Please sign in to comment.