Merge pull request #45 from hotplot/patch-1
[EVA-2020-02-2.git] / .travis.yml
... / ...
CommitLineData
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
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
23
24notifications:
25 email: false