projects
/
EVA-2020-02-2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Expand test coverage, bugfix
[EVA-2020-02-2.git]
/
.travis.yml
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
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
23
24
notifications:
25
email: false