diff options
author | Victor Stinner <vstinner@python.org> | 2022-10-12 08:09:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 08:09:21 (GMT) |
commit | 0895c2a066c64c84cab0821886dfa66efc1bdc2f (patch) | |
tree | f2371b25cdbf64201c90316f03370f5d0000fe6e /.azure-pipelines | |
parent | c39a0c335486fa8eac0f3030930f9e8769118a4f (diff) | |
download | cpython-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')
-rw-r--r-- | .azure-pipelines/posix-steps.yml | 2 |
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')) |