diff options
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' |