diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2019-05-16 15:44:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-16 15:44:53 -0400 |
commit | 28c26653e86b01dd707c50b72da5de524aad3fe5 (patch) | |
tree | 8941385204e9db22fbbb19bca32e50ef57ab4b2f /azure-pipelines.yml | |
parent | 5c3adc2fbaebaca2324d1ff86f19e23a3fabd012 (diff) | |
parent | fbb81b10ba8baff236ab9b60c170866dc7a7a067 (diff) | |
download | delivery_merge-28c26653e86b01dd707c50b72da5de524aad3fe5.tar.gz |
Merge pull request #3 from astroconda/codecov
Codecov
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2afca99..ba3ad70 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,6 +25,9 @@ steps: displayName: 'Install dependencies' - script: | - python -m pip install pytest pytest-azurepipelines - pytest -v + python -m pip install pytest pytest-azurepipelines pytest-cov codecov + pytest -v --cov=delivery_merge --cov-report=xml tests + codecov -t $codecov_token + env: + codecov_token: $(CODECOV_TOKEN) displayName: 'pytest' |