From d6546aa3b8c37af33bee2a6ab5ab59578bbcd969 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 15 Jan 2025 09:45:40 -0800 Subject: [PATCH] print macos durations --- .../templates/jobs/standard-tests-jobs.yml | 31 ------------------- .../stages/test-and-package-stage.yml | 2 -- tox.ini | 2 +- 3 files changed, 1 insertion(+), 34 deletions(-) diff --git a/.azure-pipelines/templates/jobs/standard-tests-jobs.yml b/.azure-pipelines/templates/jobs/standard-tests-jobs.yml index e53d1cce1..75573707c 100644 --- a/.azure-pipelines/templates/jobs/standard-tests-jobs.yml +++ b/.azure-pipelines/templates/jobs/standard-tests-jobs.yml @@ -10,37 +10,6 @@ jobs: # As of pip 23.1.0, builds started failing on macOS unless this flag was set. # See https://github.com/certbot/certbot/pull/9717#issuecomment-1610861794. PIP_USE_PEP517: "true" - linux-oldest: - IMAGE_NAME: ubuntu-22.04 - PYTHON_VERSION: 3.9 - TOXENV: oldest - linux-py39: - # linux unit tests with the oldest python we support - IMAGE_NAME: ubuntu-22.04 - PYTHON_VERSION: 3.9 - TOXENV: py39 - linux-cover: - # linux unit+cover tests with the newest python we support - 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 - TOXENV: integration - 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 diff --git a/tox.ini b/tox.ini index bd5462fdb..c1fb1fec0 100644 --- a/tox.ini +++ b/tox.ini @@ -85,7 +85,7 @@ common_coverage_report_commands = {[testenv:cover]coverage_report} --fail-under 99 --include certbot-dns-sakuracloud/* {[testenv:cover]coverage_report} --fail-under 98 --include certbot-nginx/* commands = - {[testenv:py]commands} --cov --cov-report= + {[testenv:py]commands} --cov --cov-report= --durations=0 {[testenv:cover]coverage_report} --fail-under 100 --include acme/* {[testenv:cover]coverage_report} --fail-under 95 --include certbot/* {[testenv:cover]coverage_report} --fail-under 100 --include certbot-apache/*