summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-12-31 18:31:23 -0500
committerNed Batchelder <ned@nedbatchelder.com>2020-12-31 18:56:33 -0500
commit40990ace4c08969f3d598399ffb5e2fac54ade66 (patch)
tree82994a19c9cf7b7971307e4899d715ce5502585d
parent7493db8309b64a5b1239ad628119094c119532cc (diff)
downloadpython-coveragepy-git-40990ace4c08969f3d598399ffb5e2fac54ade66.tar.gz
Run pylint on Mac to keep things consistent
-rw-r--r--.github/workflows/quality.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml
index ad45b2ee..fbd3d832 100644
--- a/.github/workflows/quality.yml
+++ b/.github/workflows/quality.yml
@@ -16,7 +16,10 @@ defaults:
jobs:
lint:
name: Pylint etc
- runs-on: ubuntu-latest
+ # Because pylint can report different things on different OS's (!)
+ # (https://github.com/PyCQA/pylint/issues/3489), run this on Mac where local
+ # pylint gets run.
+ runs-on: macos-latest
steps:
- name: "Check out the repo"