summaryrefslogtreecommitdiffstats
path: root/.azure-pipelines/posix-steps.yml
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-10-12 08:09:21 (GMT)
committerGitHub <noreply@github.com>2022-10-12 08:09:21 (GMT)
commit0895c2a066c64c84cab0821886dfa66efc1bdc2f (patch)
treef2371b25cdbf64201c90316f03370f5d0000fe6e /.azure-pipelines/posix-steps.yml
parentc39a0c335486fa8eac0f3030930f9e8769118a4f (diff)
downloadcpython-0895c2a066c64c84cab0821886dfa66efc1bdc2f.zip
cpython-0895c2a066c64c84cab0821886dfa66efc1bdc2f.tar.gz
cpython-0895c2a066c64c84cab0821886dfa66efc1bdc2f.tar.bz2
gh-97669: Create Tools/patchcheck/ directory (#98186)
Move patchcheck.py, reindent.py and untabify.py scripts to a new Tools/patchcheck/ directory.
Diffstat (limited to '.azure-pipelines/posix-steps.yml')
-rw-r--r--.azure-pipelines/posix-steps.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml
index 29b43e0..9d7c5e1 100644
--- a/.azure-pipelines/posix-steps.yml
+++ b/.azure-pipelines/posix-steps.yml
@@ -68,7 +68,7 @@ steps:
- ${{ if eq(parameters.patchcheck, 'true') }}:
- script: |
git fetch origin
- ./python Tools/scripts/patchcheck.py --ci true
+ ./python Tools/patchcheck/patchcheck.py --ci true
displayName: 'Run patchcheck.py'
condition: and(succeeded(), eq(variables['Build.Reason'], 'PullRequest'))