From f0589a34c6325cc2bf989e0ed6c16cb38dfefcc2 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sat, 20 Jun 2020 06:39:13 -0700 Subject: [PATCH] try azure update again --- azure-pipelines.yml | 4 ++-- pytest.ini | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 pytest.ini diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7be3cec0..2ad0e086 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -26,7 +26,7 @@ jobs: displayName: 'Install dependencies' - script: | - pip install pytest pytest-azurepipelines + pip install pytest pytest-cov pytest-azurepipelines pytest --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html displayName: 'pytest' @@ -65,7 +65,7 @@ jobs: displayName: 'Install dependencies' - script: | - pip install pytest pytest-azurepipelines + pip install pytest pytest-cov pytest-azurepipelines pytest --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html displayName: 'pytest' diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 00000000..5b9d772c --- /dev/null +++ b/pytest.ini @@ -0,0 +1,3 @@ +# pytest.ini +[pytest] +junit_family=xunit1 -- 2.47.3