forked from seatgeek/fuzzywuzzy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (31 loc) · 970 Bytes
/
.travis.yml
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
26
27
28
29
30
31
language: python
matrix:
include:
- python: "2.7"
env: TEST_SUITE=py.test
- python: "3.3"
env: TEST_SUITE=py.test
- python: "3.4"
env: TEST_SUITE=py.test
- python: "3.5"
env: TEST_SUITE=py.test
- python: "3.6"
env: TEST_SUITE=py.test
- python: "pypy"
env: TEST_SUITE=py.test
- python: "2.6"
env: TEST_SUITE="py.test test_fuzzywuzzy.py test_fuzzywuzzy_pytest.py"
- python: "pypy3.5-5.8.0"
env: TEST_SUITE="py.test test_fuzzywuzzy.py test_fuzzywuzzy_pytest.py"
- python: 3.6
env: TEST_SUITE="python setup.py check --restructuredtext --strict --metadata"
install:
- pip install -U pip setuptools wheel
- pip install pytest==3.2.5 pycodestyle docutils Pygments
- if [ $TRAVIS_PYTHON_VERSION != 2.6 -a $TRAVIS_PYTHON_VERSION != "pypy3" ]; then pip install hypothesis; fi;
- if [ $TRAVIS_PYTHON_VERSION = 3.3 ]; then pip install enum34; fi;
script:
- $TEST_SUITE
notifications:
on_success: always
cache: pip