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 36e9f94 commit 041b15aCopy full SHA for 041b15a
.travis.yml
@@ -22,8 +22,9 @@ jobs:
22
include:
23
- stage: upload test coverage
24
install:
25
- - pip install codecov
+ - pip install pytest pytest-cov codecov
26
script:
27
+ - pytest --cov=./
28
- codecov
29
30
- stage: deploy documentation
@@ -53,3 +54,11 @@ jobs:
53
54
branch: master
55
tags: true
56
57
+ - stage: update GitHub releases
58
+ deploy:
59
+ provider: releases
60
+ api_key: $GITHUB_TOKEN
61
+ draft: true
62
+ on:
63
+ branch: master
64
+ tags: true
0 commit comments