From a7cb2109a1be5320b86776ba1d08691c427d2432 Mon Sep 17 00:00:00 2001 From: Brian Skinn Date: Mon, 9 Dec 2024 23:41:28 -0500 Subject: [PATCH] Remove linkcheck step from Azure Pipelines --- azure-pipelines.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d2114b6..95ae041 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -198,32 +198,6 @@ stages: displayName: Run README doctests - - job: linkcheck - displayName: Run docs link-check suite - - pool: - vmImage: 'Ubuntu-latest' - - steps: - - task: UsePythonVersion@0 - inputs: - versionSpec: '3.12' - - - task: Cache@2 - inputs: - key: 'pip | "$(Agent.OS)" | requirements-dev.txt | requirements-flake8.txt' - restoreKeys: | - pip | "$(Agent.OS)" - path: $(pip_cache_dir) - displayName: Cache pip - - - script: pip install . -r requirements-rtd.txt - displayName: Install doc requirements and local project - - - script: cd doc; make linkcheck - displayName: Run link check - - - job: testdir_coverage displayName: Confirm all test code was executed