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 a07bc94 commit 3855588Copy full SHA for 3855588
.travis.yml
@@ -1,15 +1,20 @@
1
language: python
2
cache: pip
3
-python:
4
- - "3.4"
5
- - "3.5-dev"
6
- - "3.6-dev"
+matrix:
+ include:
+ - python: "3.4"
+ env: GEVER=35
7
+ - python: "3.5-dev"
8
+ env: GEVER=36
9
+ - python: "3.6-dev"
10
+ env: GEVER=37 LEVER=35
11
+ - python: "3.7-dev"
12
13
install:
- - python3 -m pip install --upgrade mypy
14
+ - python3 -m pip install --upgrade mypy coverage
15
16
script:
- - python3 -m unittest discover
17
+ - python3 -m coverage run -m unittest discover
18
- mypy --ignore-missing-imports importlib_resources
19
20
after_success:
0 commit comments