From 6fa50a423e2e5cf01c1a178eede93f79319682f3 Mon Sep 17 00:00:00 2001 From: Warren Fisher Date: Sun, 19 Jan 2020 13:12:02 -0400 Subject: [PATCH] Add default arguments so that ./mach test --all works --- python/servo/testing_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: