diff options
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/check.py b/check.py new file mode 100755 index 0000000..47819a1 --- /dev/null +++ b/check.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python3 + + +import subprocess +import pathlib + + +def main() -> None: + subprocess.run( + ["go", "test", "-v"], + check=True, + cwd=pathlib.Path(__file__).parent, + ) + + +if __name__ == "__main__": + main() |