Commit | Line | Data |
---|---|---|
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 | |
14 | - python: "2.7" | |
15 | env: TOXENV=py27 | |
16 | ||
17 | install: | |
18 | - pip install --ignore-installed --upgrade setuptools pip tox coveralls | |
19 | ||
20 | script: | |
21 | - cd library | |
22 | - tox -vv | |
23 | ||
24 | after_success: if [ "$TOXENV" == "py35" ]; then coveralls; fi |