summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-04-28 13:26:13 -0600
committerGitHub <noreply@github.com>2021-04-28 13:26:13 -0600
commit58a77d07b65eb249f77875ca137cc2ecf4c0e47e (patch)
tree4df11146c63d26e60537e5b7a3f150427133bc6b
parent1fee7acbcf498334e36b748087bd86409a09a828 (diff)
parent7bd275f263fe1493d59d88690b902f865777e8bc (diff)
downloadnumpy-58a77d07b65eb249f77875ca137cc2ecf4c0e47e.tar.gz
Merge pull request #18869 from charris/fix-linter-for-pip
MAINT: Fix azure linter problems with pip 21.1
-rw-r--r--azure-pipelines.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 017491450..9b8373954 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -29,9 +29,10 @@ stages:
addToPath: true
architecture: 'x64'
- script: >-
- python -m pip --disable-pip-version-check install -r linter_requirements.txt
+ python -m pip install -r linter_requirements.txt
displayName: 'Install tools'
- failOnStderr: true
+ # pip 21.1 emits a pile of garbage messages to annoy users :)
+ # failOnStderr: true
- script: |
python tools/linter.py --branch origin/$(System.PullRequest.TargetBranch)
displayName: 'Run Lint Checks'