summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polyconseil.fr>2013-12-25 01:45:07 +0100
committerRaphaël Barrois <raphael.barrois@polyconseil.fr>2013-12-25 01:45:07 +0100
commit09c0258f30429970993b5cbc6de603bb0fabcce7 (patch)
treed2b6f7ce9df97266898a861757dd45e76f40f91d /.travis.yml
parent8a014a343050625b8d30db5a8fa608b875b018c4 (diff)
downloadfactory-boy-09c0258f30429970993b5cbc6de603bb0fabcce7.tar
factory-boy-09c0258f30429970993b5cbc6de603bb0fabcce7.tar.gz
Don't install Pillow on PyPy on travis.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
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