# HG changeset patch # User Matt Harbison # Date 1618275499 14400 # Node ID e917fa36fb5804c78501dbfb0f61f44930b4dd7d # Parent 94c0c36299b1a0c4596fbf5655ce9d4580267158 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 diff -r 94c0c36299b1 -r e917fa36fb58 contrib/heptapod-ci.yml --- 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"