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