Skip to content

Commit d699d99

Browse files
authored
Merge pull request #6 from codingjoe/all_py
Add all supported CPython versions to CI suite
2 parents 2ce989b + 379367d commit d699d99

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

.travis.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,28 @@
11
language: python
2+
sudo: false
23

34
python:
45
- "2.7"
56
- "3.4"
7+
- "3.5"
8+
- "3.6"
69

7-
before_install:
8-
- sudo apt-get update -qq
9-
- sudo apt-get install -y gettext aspell aspell-fr libenchant-dev
10+
cache:
11+
- pip
12+
- apt
13+
14+
addons:
15+
apt:
16+
packages:
17+
- gettext
18+
- aspell
19+
- aspell-en
20+
- aspell-fr
21+
- libenchant-dev
1022

1123
install:
12-
- "pip install pylint"
13-
- "pip install -r requirements.txt"
24+
- pip install -U pylint
25+
- pip install -Ur requirements.txt
1426

1527
script:
1628
- pylint --disable=W0511 msgcheck

0 commit comments

Comments
 (0)