diff options
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ import pathlib def main() -> None: subprocess.run( - ["go", "test", "-v"], + ["go", "test", "-v", "./..."], check=True, cwd=pathlib.Path(__file__).resolve().parent, ) |