Try to run codechecks3 on CI

This commit is contained in:
Jean-Paul Calderone 2021-08-11 09:50:23 -04:00
parent 93fbfb61a8
commit 2bb310c511
2 changed files with 19 additions and 1 deletions

View File

@ -150,7 +150,7 @@ jobs:
# Since this job is never scheduled this step is never run so the
# actual value here is irrelevant.
lint:
codechecks:
docker:
- <<: *DOCKERHUB_AUTH
image: "circleci/python:2"
@ -168,6 +168,24 @@ jobs:
command: |
~/.local/bin/tox -e codechecks
codechecks3:
docker:
- <<: *DOCKERHUB_AUTH
image: "circleci/python:3"
steps:
- "checkout"
- run:
name: "Install tox"
command: |
pip install --user tox
- run:
name: "Static-ish code checks"
command: |
~/.local/bin/tox -e codechecks3
pyinstaller:
docker:
- <<: *DOCKERHUB_AUTH

0
newsfragments/3760.minor Normal file
View File