move run_mypy to placate ci
This commit is contained in:
parent
a4712c76f7
commit
6848a03fc8
2 changed files with 2 additions and 2 deletions
|
|
@ -49,7 +49,7 @@ repos:
|
|||
hooks:
|
||||
- id: mypy
|
||||
name: mypy
|
||||
entry: "python3 run_mypy.py"
|
||||
entry: "python3 etc/run_mypy.py"
|
||||
language: python
|
||||
additional_dependencies: ["mypy==0.790", "tomlkit"]
|
||||
types: [python]
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ def print_check_call(command):
|
|||
subprocess.check_call(command)
|
||||
|
||||
|
||||
os.chdir(pathlib.Path(__file__).parent)
|
||||
os.chdir(pathlib.Path(__file__).parent.parent)
|
||||
|
||||
pip_command = ["pip", "install", "--no-input", "--quiet", "--editable", "."]
|
||||
print_check_call(pip_command)
|
||||
Loading…
Reference in a new issue