From a0be157d16139480fd90c3092312b3db65fe14b6 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 29 Jun 2023 12:50:17 -0700 Subject: [PATCH 1/3] mac tests only --- .../templates/jobs/standard-tests-jobs.yml | 43 ------------------- .../stages/test-and-package-stage.yml | 2 - 2 files changed, 45 deletions(-) diff --git a/.azure-pipelines/templates/jobs/standard-tests-jobs.yml b/.azure-pipelines/templates/jobs/standard-tests-jobs.yml index 29afa2a98..39e2a399e 100644 --- a/.azure-pipelines/templates/jobs/standard-tests-jobs.yml +++ b/.azure-pipelines/templates/jobs/standard-tests-jobs.yml @@ -11,49 +11,6 @@ jobs: macos-cover: IMAGE_NAME: macOS-12 TOXENV: cover - windows-py37: - IMAGE_NAME: windows-2019 - PYTHON_VERSION: 3.7 - TOXENV: py-win - windows-py39-cover: - IMAGE_NAME: windows-2019 - PYTHON_VERSION: 3.9 - TOXENV: cover-win - windows-integration-certbot: - IMAGE_NAME: windows-2019 - PYTHON_VERSION: 3.9 - TOXENV: integration-certbot - linux-oldest: - IMAGE_NAME: ubuntu-22.04 - PYTHON_VERSION: 3.7 - TOXENV: oldest - linux-py37: - IMAGE_NAME: ubuntu-22.04 - PYTHON_VERSION: 3.7 - TOXENV: py37 - linux-cover: - IMAGE_NAME: ubuntu-22.04 - TOXENV: cover - linux-lint: - IMAGE_NAME: ubuntu-22.04 - TOXENV: lint-posix - linux-mypy: - IMAGE_NAME: ubuntu-22.04 - TOXENV: mypy - linux-integration: - IMAGE_NAME: ubuntu-22.04 - PYTHON_VERSION: 3.8 - TOXENV: integration - ACME_SERVER: pebble - apache-compat: - IMAGE_NAME: ubuntu-22.04 - TOXENV: apache_compat - apacheconftest: - IMAGE_NAME: ubuntu-22.04 - TOXENV: apacheconftest-with-pebble - nginxroundtrip: - IMAGE_NAME: ubuntu-22.04 - 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 From 455e42c37e87d0275f59b705727f2cbc8998a1ad Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 29 Jun 2023 13:36:11 -0700 Subject: [PATCH 2/3] more info? --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 302f56478..8ddf4ed78 100644 --- a/tox.ini +++ b/tox.ini @@ -19,7 +19,7 @@ setenv = PYTEST_ADDOPTS = {env:PYTEST_ADDOPTS:--numprocesses auto} PYTHONHASHSEED = 0 # The default install command is python -I -m pip install {opts} {packages} -install_command = python -I {toxinidir}/tools/pip_install.py {opts} {packages} +install_command = python -I {toxinidir}/tools/pip_install.py -vvvvv {opts} {packages} deps = -e acme[test] -e certbot[test] From a365124a4d8310dbba823e4a3f73c6f1d34c45d8 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 29 Jun 2023 13:44:18 -0700 Subject: [PATCH 3/3] verbose tox --- .azure-pipelines/templates/steps/tox-steps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipelines/templates/steps/tox-steps.yml b/.azure-pipelines/templates/steps/tox-steps.yml index e7f3ac70c..15d062871 100644 --- a/.azure-pipelines/templates/steps/tox-steps.yml +++ b/.azure-pipelines/templates/steps/tox-steps.yml @@ -38,7 +38,7 @@ steps: export TARGET_BRANCH="`echo "${BUILD_SOURCEBRANCH}" | sed -E 's!refs/(heads|tags)/!!g'`" [ -z "${SYSTEM_PULLREQUEST_TARGETBRANCH}" ] || export TARGET_BRANCH="${SYSTEM_PULLREQUEST_TARGETBRANCH}" env - python3 -m tox + python3 -m tox -vvvvvvvvv env: AWS_ACCESS_KEY_ID: $(AWS_ACCESS_KEY_ID) AWS_SECRET_ACCESS_KEY: $(AWS_SECRET_ACCESS_KEY)