This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients FFY00, vstinner
Date 2020-11-20.14:17:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1605881828.66.0.640194180155.issue42212@roundup.psfhosted.org>
In-reply-to
Content
While we are here... it might interesting to also run patchcheck.py on PRs using GitHub Actions:
https://mail.python.org/archives/list/python-dev@python.org/message/DKLD2VLHZ3F54WTKZ7JHKWBMOZ4N5TK7/

.travis.yml uses:

script:
  # Using the built Python as patchcheck.py is built around the idea of using
  # a checkout-build of CPython to know things like what base branch the changes
  # should be compared against.
  # Only run on Linux as the check only needs to be run once.
  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./python Tools/scripts/patchcheck.py --travis $TRAVIS_PULL_REQUEST; fi
History
Date User Action Args
2020-11-20 14:17:08vstinnersetrecipients: + vstinner, FFY00
2020-11-20 14:17:08vstinnersetmessageid: <1605881828.66.0.640194180155.issue42212@roundup.psfhosted.org>
2020-11-20 14:17:08vstinnerlinkissue42212 messages
2020-11-20 14:17:08vstinnercreate