diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2021-03-23 15:19:17 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2021-03-23 15:28:08 -0700 |
| commit | 1767c57492529fc7c3823871f861db35b89f5c1f (patch) | |
| tree | 757c77d1349290348e4483557e84e1a59a4aa6b9 | |
| parent | adbfa12409dbbfc44fe48d12abd2d92bec9249ad (diff) | |
| download | meson-1767c57492529fc7c3823871f861db35b89f5c1f.tar.gz | |
run_project_tests: add annotations
| -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 ef800a0ce..6cc89f656 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 |
