From dca01f8f316fa4079215faf80915ba1d0e8b1c01 Mon Sep 17 00:00:00 2001 From: AUC Hardal Date: Thu, 18 Jun 2020 11:32:43 +0200 Subject: [PATCH] Append serial cov to parallel --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 721d9d73547..8e5c41919bb 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -96,7 +96,7 @@ jobs: source activate qcodes && cd qcodes && pytest -m "not serial" --junitxml=test-parallel-results.xml --cov=qcodes --cov-report=xml --cov-config=.coveragerc && - pytest -n 1 -m serial --junitxml=test-serial-results.xml --cov=qcodes --cov-report=xml --cov-config=.coveragerc + pytest -n 1 -m serial --junitxml=test-serial-results.xml --cov-append --cov=qcodes --cov-report=xml --cov-config=.coveragerc displayName: "Pytest on Windows" condition: and(succeededOrFailed(), eq( variables['Agent.OS'], 'Windows_NT' )) - bash: | @@ -104,7 +104,7 @@ jobs: cd qcodes && xvfb-run --server-args="-screen 0 1024x768x24" \ pytest -m "not serial" --junitxml=test-parallel-results.xml --cov=qcodes --cov-report=xml --cov-config=.coveragerc && - pytest -n 1 -m serial --junitxml=test-serial-results.xml --cov=qcodes --cov-report=xml --cov-config=.coveragerc + pytest -n 1 -m serial --junitxml=test-serial-results.xml --cov-append --cov=qcodes --cov-report=xml --cov-config=.coveragerc displayName: "Pytest on Linux" condition: and(succeededOrFailed(), eq( variables['Agent.OS'], 'Linux' )) - task: PublishTestResults@2