Skip to content

Commit ba4a95f

Browse files
authored
fix mypy check and check cythonized after static (#76)
1 parent eaa6931 commit ba4a95f

File tree

1 file changed

+28
-31
lines changed

1 file changed

+28
-31
lines changed

.travis.yml

Lines changed: 28 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -17,53 +17,23 @@ jobs:
1717
python: 3.4
1818
script:
1919
- tox -e py34
20-
- stage: test
21-
name: "Python 3.4 no coverage"
22-
python: 3.4
23-
script:
24-
- tox -e py34-nocov
25-
after_success: skip
26-
2720
- stage: test
2821
name: "Python 3.5"
2922
python: 3.5
3023
script:
3124
- tox -e py35
32-
- stage: test
33-
name: "Python 3.5 no coverage"
34-
python: 3.5
35-
script:
36-
- tox -e py35-nocov
37-
after_success: skip
38-
3925
- stage: test
4026
name: "Python 3.6"
4127
python: 3.6
4228
script:
4329
- tox -e py36
44-
- stage: test
45-
name: "Python 3.6 no coverage"
46-
python: 3.6
47-
script:
48-
- tox -e py36-nocov
49-
after_success: skip
50-
5130
- stage: test
5231
name: "Python 3.7"
5332
python: 3.7
5433
dist: xenial
5534
sudo: true
5635
script:
5736
- tox -e py37
58-
- stage: test
59-
name: "Python 3.7 no coverage"
60-
python: 3.7
61-
dist: xenial
62-
sudo: true
63-
script:
64-
- tox -e py37-nocov
65-
after_success: skip
66-
6737
- stage: test
6838
name: "PyPy3"
6939
python: pypy3.5
@@ -100,7 +70,34 @@ jobs:
10070
- *upgrade_python_toolset
10171
- pip install tox
10272
script:
103-
- tox mypy
73+
- tox -e mypy
74+
after_success: skip
75+
76+
- stage: Test cythonized
77+
name: "Python 3.4"
78+
python: 3.4
79+
script:
80+
- tox -e py34-nocov
81+
after_success: skip
82+
- stage: Test cythonized
83+
name: "Python 3.5"
84+
python: 3.5
85+
script:
86+
- tox -e py35-nocov
87+
after_success: skip
88+
- stage: Test cythonized
89+
name: "Python 3.6"
90+
python: 3.6
91+
script:
92+
- tox -e py36-nocov
93+
after_success: skip
94+
- stage: Test cythonized
95+
name: "Python 3.7 no coverage"
96+
python: 3.7
97+
dist: xenial
98+
sudo: true
99+
script:
100+
- tox -e py37-nocov
104101
after_success: skip
105102

106103
- stage: Code style check

0 commit comments

Comments
 (0)