From caeb0c23cc53d6df62af63bbca204f69973f836b Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Mon, 8 Aug 2022 22:21:22 +0100 Subject: [PATCH] Remove pytest-azurepipelines for now Test errors in Azure are all printing KeyError: 'reason', it seems to be an incompatibility between pytest-azurepipelines and pytest-xdist. I've filed a bug here: https://github.com/Azure/pytest-azurepipelines/issues/71 in the meantime, I'll disable this plugin. --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f8142ce80..70275815a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,7 +7,7 @@ jobs: inputs: versionSpec: '3.8' - bash: | - python -m pip install -e ".[dev]" pytest-azurepipelines + python -m pip install -e ".[dev]" python ./bin/run_tests.py - job: macos_38 @@ -17,7 +17,7 @@ jobs: inputs: versionSpec: '3.8' - bash: | - python -m pip install -e ".[dev]" pytest-azurepipelines + python -m pip install -e ".[dev]" python ./bin/run_tests.py - job: windows_38 @@ -28,5 +28,5 @@ jobs: inputs: versionSpec: '3.8' - bash: | - python -m pip install -e ".[dev]" pytest-azurepipelines + python -m pip install -e ".[dev]" python ./bin/run_tests.py