blob: a1d14f6d0c77aafff8907a5f815895de14c21c8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
language: python
python:
- "2.7"
- "3.4"
- "pypy"
script:
- python setup.py test
install:
- pip install Django
- pip install sqlalchemy --use-mirrors
- if ! python --version 2>&1 | grep -q -i pypy ; then pip install Pillow --use-mirrors; fi
notifications:
email: false
irc: "irc.freenode.org#factory_boy"
|