blob: d51b36156d7d932328b3cf9d2e7d36160e39d287 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- pypy
install:
- pip install -q -r requirements.txt --use-mirrors
before_script:
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then 2to3 --no-diffs --write --nobackups slugify; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then 2to3 --no-diffs --write --nobackups slugify; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then 2to3 --no-diffs --write --nobackups slugify; fi
script: python test.py
|