Skip to content

Commit

Permalink
Merge pull request #916 from pganssle/fix_azure
Browse files Browse the repository at this point in the history
Don't upload coverage on azure
  • Loading branch information
pganssle committed May 18, 2019
2 parents cc757cc + 5f5a76c commit 40924bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Expand Up @@ -66,7 +66,7 @@ steps:
if [[ $TOXENV == "py" ]]; then
./ci_tools/retry.sh python updatezinfo.py
python -m tox -- dateutil/test --cov-config=tox.ini --cov=dateutil --junitxml=unittests/TEST-$(Agent.JobName).xml
python -m tox -e coverage,codecov
python -m tox -e coverage,codecov || true
else
python -m tox
fi
Expand Down
3 changes: 3 additions & 0 deletions changelog.d/916.misc.rst
@@ -0,0 +1,3 @@
The Azure pipelines script now allows the ``tox -e coverage,codecov`` invocation
to fail without error, since codecov integration with Azure pipelines is not
yet set up.

0 comments on commit 40924bd

Please sign in to comment.