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.
2 parents ca12985 + 7daf8e1 commit df00d6eCopy full SHA for df00d6e
.travis.yml
@@ -2,11 +2,25 @@ language: python
2
3
python:
4
- 3.7
5
+ - 3.8
6
7
install:
8
- make virtualenv
9
+ - pip install -r requirements_test.txt
10
11
script:
12
- make test
13
14
cache: pip
15
+
16
+jobs:
17
+ fast_finish: true
18
+ allow_failures:
19
+ - python: 3.8
20
21
+branches:
22
+ only:
23
+ - master
24
25
+after_success:
26
+ - python -m codecov
codecov.yml
@@ -0,0 +1,2 @@
1
+ignore:
+ - "**/__*__.py"
0 commit comments