diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2020-04-25 13:28:01 +0200 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2020-04-25 13:28:01 +0200 |
commit | e2305685dea2d99ca389f79dc40e40b8d3a1fee0 (patch) | |
tree | 5665c1c646a4f96a30b661d3c08f6a645901e817 | |
parent | 5a753105d95859854e52adc2575a9a51d43c341c (diff) | |
download | gitlab-e2305685dea2d99ca389f79dc40e40b8d3a1fee0.tar.gz |
chore(ci): add codecov integration to Travis
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 2935557..d4480a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -87,8 +87,11 @@ jobs: dist: bionic name: coverage python: 3.8 + install: + - pip3 install tox codecov script: - - pip3 install tox - tox -e cover + after_success: + - codecov allow_failures: - env: GITLAB_TAG=nightly |