diff options
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index ef800a0..6cc89f6 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -817,7 +817,7 @@ def have_java(): return True return False -def skippable(suite, test): +def skippable(suite: str, test: str) -> bool: # Everything is optional when not running on CI if not under_ci: return True |