diff options
author | Warren Fisher <github@warrenfisher.dev> | 2020-01-19 13:12:02 -0400 |
---|---|---|
committer | Warren Fisher <github@warrenfisher.dev> | 2020-01-19 13:20:36 -0400 |
commit | 6fa50a423e2e5cf01c1a178eede93f79319682f3 (patch) | |
tree | 17e62e621ee34d89afa54d4c81feec0a1ee67871 | |
parent | 2a594821ba44ba2c13e9a39c6fd8c5a450bd06f4 (diff) | |
download | servo-6fa50a423e2e5cf01c1a178eede93f79319682f3.tar.gz servo-6fa50a423e2e5cf01c1a178eede93f79319682f3.zip |
Add default arguments so that ./mach test --all works
-rw-r--r-- | python/servo/testing_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index bc29955fd79..3fad465277b 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -331,7 +331,7 @@ class MachCommands(CommandBase): @CommandArgument('--stylo', default=False, action="store_true", help="Only handle files in the stylo tree") @CommandArgument('--force-cpp', default=False, action="store_true", help="Force CPP check") - def test_tidy(self, all_files, no_wpt, no_progress, self_test, stylo, force_cpp): + def test_tidy(self, all_files, no_progress, self_test, stylo, force_cpp=False, no_wpt=False): if self_test: return test_tidy.do_tests() else: |