mirror of
https://github.com/daylinmorgan/swydd.git
synced 2024-11-07 01:33:14 -06:00
17 lines
285 B
Python
Executable file
17 lines
285 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
__import__("sys").path.append("src") # noqa
|
|
|
|
import swydd as s
|
|
|
|
|
|
@s.task
|
|
@s.option("types", "also run mypy")
|
|
def check(types: bool = False):
|
|
"""run pre-commit (and mypy)"""
|
|
s.sh("pre-commit run --all")
|
|
if types:
|
|
s.sh("mypy src/")
|
|
|
|
|
|
s.cli()
|