Skip to content

Commit

Permalink
make build conditional too
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Fulton committed Nov 11, 2016
1 parent 9472333 commit 394e341
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]];
Expand Down

0 comments on commit 394e341

Please sign in to comment.