From bf9ee4a488ecb1b7f748279792a3ea40d55728d3 Mon Sep 17 00:00:00 2001 From: Dimitris Tsapetis Date: Wed, 17 Feb 2021 15:25:00 -0500 Subject: [PATCH] Update azure-pipelines.yml --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 81bf04f17..fe5d7ad0b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -86,7 +86,8 @@ steps: - script: | pip install pytest pytest-cov pytest-azurepipelines #echo "##vso[task.setvariable variable=PATH]${​​​​​​​​PATH}​​​​​​​​:$(Build.SourcesDirectory)/src/UQpy" - python -m pytest tests/*.py --cov=src --cov-report=xml --cov-report=html + #python -m pytest tests/*.py --cov=src --cov-report=xml --cov-report=html + pytest tests/ --cov-config .coveragerc --doctest-modules --junitxml=junit/test-results.xml --cov=src --cov-report=xml --cov-report=html workingDirectory: $(Build.SourcesDirectory) displayName: 'Test with pytest'