Commit 394e3411 authored by Jim Fulton's avatar Jim Fulton

make build conditional too

parent 94723337
......@@ -9,7 +9,12 @@ python:
- pypy3
install:
- pip install zc.buildout
- buildout
- if [[ "$TRAVIS_PYTHON_VERSION" != "pypy3" ]];
then
buildout;
else
buildout parts=test;
fi
script:
- bin/test
- if [[ "$TRAVIS_PYTHON_VERSION" != "pypy3" ]];
......
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