diff options
author | Raphaël Barrois <raphael.barrois@polyconseil.fr> | 2013-12-25 01:45:07 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polyconseil.fr> | 2013-12-25 01:45:07 +0100 |
commit | 09c0258f30429970993b5cbc6de603bb0fabcce7 (patch) | |
tree | d2b6f7ce9df97266898a861757dd45e76f40f91d | |
parent | 8a014a343050625b8d30db5a8fa608b875b018c4 (diff) | |
download | factory-boy-09c0258f30429970993b5cbc6de603bb0fabcce7.tar factory-boy-09c0258f30429970993b5cbc6de603bb0fabcce7.tar.gz |
Don't install Pillow on PyPy on travis.
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 3edfd11..e3617e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,8 @@ script: install: - if [[ $TRAVIS_PYTHON_VERSION = 2.6 ]]; then pip install unittest2 --use-mirrors; fi - - pip install Django Pillow sqlalchemy --use-mirrors + - pip install Django sqlalchemy --use-mirrors + - if ! python --version 2>&1 | grep -q -i pypy ; then pip install Pillow --use-mirrors notifications: email: false |