blob: e73acadf0cc6b472dcbb3ddaf54c23a74ef7d655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- pypy
install:
- pip install -q -r requirements.txt --use-mirrors
- pip install -e .
- pip install pep8
- pip install coveralls
- pip install https://github.com/un33k/pyflakes/tarball/master
before_script:
- "pep8 --exclude=migrations --ignore=E501,E225,E128 ."
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pyflakes -x W slugify; fi
script: coverage run --source=slugify test.py
after_success:
coveralls
|