-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run checks locally #160
Comments
Running from python sounds like a good plan. Actually, what we could probably do is to make a python script which reads |
To combine them it would be better to have the github workflow call the python script |
I was imagining a script which ran all checks by default, or add an argument to run only specified
|
Oooh - OK yes that would make much more sense. |
The PR checks run linting, type checks and tests.
wheatley/.github/workflows/main.yml
Lines 24 to 33 in 801e3d1
mypy and pylint are in the requirements, we just need a way of running these commands locally on Linux or Windows machines.
To cope with venvs, perhaps a python script that could be invoked? Looks like mypy and pylint both can be called from python
https://github.com/python/mypy/blob/master/docs/source/extending_mypy.rst
http://pylint.pycqa.org/en/latest/user_guide/run.html
The text was updated successfully, but these errors were encountered: