From 56bf45ce1c2c21f6c66e4cc6ed185d9018b48992 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 14 Jan 2021 16:23:08 -0800 Subject: [PATCH] fail immediately --- .../templates/jobs/standard-tests-jobs.yml | 61 ------------------- .../stages/test-and-package-stage.yml | 2 - .../templates/steps/tox-steps.yml | 1 + 3 files changed, 1 insertion(+), 63 deletions(-) diff --git a/.azure-pipelines/templates/jobs/standard-tests-jobs.yml b/.azure-pipelines/templates/jobs/standard-tests-jobs.yml index 7506209e4..6c6269cd3 100644 --- a/.azure-pipelines/templates/jobs/standard-tests-jobs.yml +++ b/.azure-pipelines/templates/jobs/standard-tests-jobs.yml @@ -8,67 +8,6 @@ jobs: IMAGE_NAME: macOS-10.15 PYTHON_VERSION: 2.7 TOXENV: py27 - macos-py39: - IMAGE_NAME: macOS-10.15 - PYTHON_VERSION: 3.9 - TOXENV: py39 - windows-py36: - IMAGE_NAME: vs2017-win2016 - PYTHON_VERSION: 3.6 - TOXENV: py36 - windows-py38-cover: - IMAGE_NAME: vs2017-win2016 - PYTHON_VERSION: 3.8 - TOXENV: py38-cover - windows-integration-certbot: - IMAGE_NAME: vs2017-win2016 - PYTHON_VERSION: 3.8 - TOXENV: integration-certbot - linux-oldest-tests-1: - IMAGE_NAME: ubuntu-18.04 - TOXENV: py27-{acme,apache,apache-v2,certbot}-oldest - linux-oldest-tests-2: - IMAGE_NAME: ubuntu-18.04 - TOXENV: py27-{dns,nginx}-oldest - linux-py27: - IMAGE_NAME: ubuntu-18.04 - PYTHON_VERSION: 2.7 - TOXENV: py27 - linux-py36: - IMAGE_NAME: ubuntu-18.04 - PYTHON_VERSION: 3.6 - TOXENV: py36 - linux-py39-cover: - IMAGE_NAME: ubuntu-18.04 - PYTHON_VERSION: 3.9 - TOXENV: py39-cover - linux-py37-lint: - IMAGE_NAME: ubuntu-18.04 - PYTHON_VERSION: 3.7 - TOXENV: lint - linux-py36-mypy: - IMAGE_NAME: ubuntu-18.04 - PYTHON_VERSION: 3.6 - TOXENV: mypy - linux-integration: - IMAGE_NAME: ubuntu-18.04 - PYTHON_VERSION: 3.8 - TOXENV: integration - ACME_SERVER: pebble - apache-compat: - IMAGE_NAME: ubuntu-18.04 - TOXENV: apache_compat - le-modification: - IMAGE_NAME: ubuntu-18.04 - TOXENV: modification - apacheconftest: - IMAGE_NAME: ubuntu-18.04 - PYTHON_VERSION: 2.7 - TOXENV: apacheconftest-with-pebble - nginxroundtrip: - IMAGE_NAME: ubuntu-18.04 - PYTHON_VERSION: 2.7 - TOXENV: nginxroundtrip pool: vmImage: $(IMAGE_NAME) steps: diff --git a/.azure-pipelines/templates/stages/test-and-package-stage.yml b/.azure-pipelines/templates/stages/test-and-package-stage.yml index 26010644d..bb9685444 100644 --- a/.azure-pipelines/templates/stages/test-and-package-stage.yml +++ b/.azure-pipelines/templates/stages/test-and-package-stage.yml @@ -2,5 +2,3 @@ stages: - stage: TestAndPackage jobs: - template: ../jobs/standard-tests-jobs.yml - - template: ../jobs/extended-tests-jobs.yml - - template: ../jobs/packaging-jobs.yml diff --git a/.azure-pipelines/templates/steps/tox-steps.yml b/.azure-pipelines/templates/steps/tox-steps.yml index a9f78d36b..b233d58e8 100644 --- a/.azure-pipelines/templates/steps/tox-steps.yml +++ b/.azure-pipelines/templates/steps/tox-steps.yml @@ -1,6 +1,7 @@ steps: - bash: | set -e + exit 1 brew install augeas condition: startswith(variables['IMAGE_NAME'], 'macOS') displayName: Install MacOS dependencies