X Tutup
Skip to content

Commit bf9e5ee

Browse files
committed
remove pypy3 for now and refactor Makefile a bit to remove redundancy
1 parent 83bc08a commit bf9e5ee

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

Makefile

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ help:
1111
env:
1212
pip install -Ur requirements.txt
1313

14-
dev: env
14+
pyenv:
1515
pyenv install -s 2.7.11
1616
pyenv install -s 3.5.1
1717
pyenv install -s pypy-5.3.1
18-
pyenv install -s pypy3-2.4.0
19-
pyenv local 2.7.11 3.5.1 pypy-5.3.1 pypy3-2.4.0
18+
# pyenv install -s pypy3-2.4.0
19+
pyenv local 2.7.11 3.5.1 pypy-5.3.1 # pypy3-2.4.0
20+
21+
dev: env pyenv
2022
pip install -Ur requirements.testing.txt
2123

2224
info:
@@ -48,13 +50,7 @@ coverage: clean
4850
coverage html
4951
coverage report
5052

51-
ci:
52-
pyenv install -s 2.7.11
53-
pyenv install -s 3.5.1
54-
pyenv install -s pypy-5.3.1
55-
pyenv install -s pypy3-2.4.0
56-
pyenv local 2.7.11 3.5.1 pypy-5.3.1 pypy3-2.4.0
57-
pip install -Ur requirements.testing.txt
53+
ci: pyenv
5854
tox
5955
CODECOV_TOKEN=`cat .codecov-token` codecov
6056

0 commit comments

Comments
 (0)
X Tutup