We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7177f33 commit a53da2dCopy full SHA for a53da2d
.travis.yml
@@ -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