mirror of
https://github.com/servo/servo.git
synced 2025-06-09 00:53:26 +00:00
Add default arguments so that ./mach test --all works
This commit is contained in:
parent
2a594821ba
commit
6fa50a423e
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue