← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] ~cjwatson/launchpad:ci-mypy into launchpad:master

 

Colin Watson has proposed merging ~cjwatson/launchpad:ci-mypy into launchpad:master.

Commit message:
CI: Run mypy tests

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/429818

Since `mypy` is too slow to run in `pre-commit`, it's a good candidate for running in CI jobs so that we have less chance of accidentally regressing.
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:ci-mypy into launchpad:master.
diff --git a/.launchpad.yaml b/.launchpad.yaml
index a85a501..fd7b33b 100644
--- a/.launchpad.yaml
+++ b/.launchpad.yaml
@@ -17,3 +17,9 @@ jobs:
     snaps: [go]
     run: tox -e lint
     series: focal
+  mypy:
+    architectures: amd64
+    packages:
+      - tox
+    run: tox -e mypy
+    series: focal

Follow ups