blob: 89731a4b65a13799ea3771c34fdfbc19ea4ba90f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
language: python
python:
- "3.3"
- "3.2"
- "2.7"
- "2.6"
- "2.5"
env:
- PEP8=0
- PEP8=1
install:
- pip install pep8 --use-mirrors
- pip install -e . --use-mirrors
script: "if [[ $PEP8 == '1' ]]; then pip install pep8 --use-mirrors; pep8 --repeat --show-source --exclude=.venv,.tox,dist,doc,build,*.egg . else python setup.py test fi"
|