forked from git-multimail/git-multimail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
20 lines (20 loc) · 688 Bytes
/
.travis.yml
File metadata and controls
20 lines (20 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
install:
- pip install pep8
# latest version seems broken with Python 2.6, no version seem to work with 3.2
- if ! python --version 2>&1 | grep -q -e 'Python 2.6' -e 'Python 3.2'; then pip install rstcheck; fi
# pyflakes seems broken with 2.6, 3.2 and 3.3. Keep the testsuite
# working with with these versions but there's no need to run
# pyflakes with all versions.
- if ! python --version 2>&1 | grep -q -e 'Python 2.6' -e 'Python 3.[23]'; then pip install pyflakes; fi
script: cd t/ && verbose=t make all && ! git status --porcelain | grep -e '^??'