Commit afa27cf4 authored by Jason Madden's avatar Jason Madden

Add PyPy3 to travis config; disable most other builds for testing purposes for...

Add PyPy3 to travis config; disable most other builds for testing purposes for now. Still need to add PyPy3 specific tests.
parent 62491305
......@@ -9,15 +9,16 @@ env:
matrix:
# These are ordered to get as much diversity in the
# first group of parallel runs (4) as posible
- TASK=test-py27-noembed
#- TASK=test-py27-noembed
- TASK=test-pypy
- TASK=test-py36
#- TASK=test-py36
- TASK=lint-py27
- TASK=test-py35
- TASK=test-py278
- TASK=test-py27
- TASK=test-py34
- TASK=test-py27-cffi
#- TASK=test-py35
#- TASK=test-py278
#- TASK=test-py27
#- TASK=test-py34
#- TASK=test-py27-cffi
- TASK=test-pypy3
matrix:
......
......@@ -110,6 +110,7 @@ PY34=$(BUILD_RUNTIMES)/snakepit/python3.4
PY35=$(BUILD_RUNTIMES)/snakepit/python3.5
PY36=$(BUILD_RUNTIMES)/snakepit/python3.6
PYPY=$(BUILD_RUNTIMES)/snakepit/pypy54
PYPY3=$(BUILD_RUNTIMES)/snakepit/pypy3.3_5.5
TOOLS=$(BUILD_RUNTIMES)/tools
......@@ -139,6 +140,9 @@ $(PY36):
$(PYPY):
scripts/install.sh pypy
$(PYPY3):
scripts/install.sh pypy3
PIP?=$(BUILD_RUNTIMES)/versions/$(PYTHON)/bin/pip
develop:
......@@ -175,6 +179,9 @@ test-py36: $(PY36)
test-pypy: $(PYPY)
PYTHON=$(PYPY) PIP=pip PATH=$(BUILD_RUNTIMES)/versions/pypy54/bin:$(PATH) make develop toxtest
test-pypy3: $(PYPY3)
PYTHON=$(PYPY3) PIP=pip PATH=$(BUILD_RUNTIMES)/versions/pypy3.3_5.5/bin:$(PATH) make develop toxtest
test-py27-cffi: $(PY27)
GEVENT_CORE_CFFI_ONLY=1 PYTHON=python2.7 PATH=$(BUILD_RUNTIMES)/versions/python2.7/bin:$(PATH) make develop toxtest
......
......@@ -105,5 +105,8 @@ for var in "$@"; do
pypy)
install pypy2-5.4 pypy54
;;
pypy3)
install pypy3-5.5-alpha pypy3.3_5.5
;;
esac
done
[tox]
envlist =
py27,py33,py34,py35,py36,py27-cffi,pypy,lint
py27,py33,py34,py35,py36,py27-cffi,pypy,pypy3,lint
[testenv]
deps =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment