Commit | Line | Data |
---|---|---|
651e1c20 PH |
1 | language: python |
2 | sudo: false | |
3 | cache: pip | |
4 | ||
5 | git: | |
6 | submodules: true | |
7 | ||
8 | matrix: | |
9 | include: | |
10 | - python: "2.7" | |
11 | env: TOXENV=py27 | |
12 | - python: "3.5" | |
13 | env: TOXENV=py35 | |
651e1c20 PH |
14 | |
15 | install: | |
16 | - pip install --ignore-installed --upgrade setuptools pip tox coveralls | |
17 | ||
18 | script: | |
19 | - cd library | |
20 | - tox -vv | |
21 | ||
22 | after_success: if [ "$TOXENV" == "py35" ]; then coveralls; fi | |
ad2060db PH |
23 | |
24 | notifications: | |
25 | email: false |