Skip to content

Commit a53da2d

Browse files
committed
init CI
1 parent 7177f33 commit a53da2d

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.travis.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
language: python
2+
group: travis_latest
3+
dist: xenial
4+
5+
git:
6+
depth: 25
7+
quiet: true
8+
9+
python:
10+
- 3.7
11+
12+
matrix:
13+
include:
14+
- os: linux
15+
python: 3.7
16+
install: pip install -e .[tests,cov]
17+
script:
18+
- flake8
19+
- mypy . --ignore-missing-imports
20+
after_success:
21+
- pytest --cov
22+
- coveralls
23+
24+
install: pip install -e .[tests]
25+
26+
script: pytest -rsv

0 commit comments

Comments
 (0)