diff options
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2afca99..0dbd6a6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,6 +25,7 @@ steps: displayName: 'Install dependencies' - script: | - python -m pip install pytest pytest-azurepipelines - pytest -v + python -m pip install pytest pytest-azurepipelines pytest-codecov + pytest -v --cov=delivery_merge --cov-report=xml + codecov --file coverage.xml displayName: 'pytest' |