heptapod-ci: enable pytype checking
The trigger is manual for now, until we get a better idea about stability,
resource usage, etc.
Differential Revision: https://phab.mercurial-scm.org/D10462
--- a/contrib/heptapod-ci.yml Thu May 06 18:40:23 2021 -0400
+++ b/contrib/heptapod-ci.yml Mon Apr 12 20:58:19 2021 -0400
@@ -125,3 +125,17 @@
PYTHON: python3
RUNTEST_ARGS: "--blacklist /tmp/check-tests.txt --chg"
TEST_HGMODULEPOLICY: "c"
+
+check-pytype-py3:
+ extends: .runtests_template
+ when: manual
+ before_script:
+ - hg clone . /tmp/mercurial-ci/ --noupdate --config phases.publish=no
+ - hg -R /tmp/mercurial-ci/ update `hg log --rev '.' --template '{node}'`
+ - cd /tmp/mercurial-ci/
+ - make local PYTHON=$PYTHON
+ - $PYTHON -m pip install --user -U pytype==2021.04.15
+ variables:
+ RUNTEST_ARGS: " --allow-slow-tests tests/test-check-pytype.t"
+ PYTHON: python3
+ TEST_HGMODULEPOLICY: "c"