Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add default arguments so that ./mach test --all works #25555

Merged
merged 1 commit into from Jan 20, 2020
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Add default arguments so that ./mach test --all works

  • Loading branch information
warren-fisher committed Jan 19, 2020
commit 6fa50a423e2e5cf01c1a178eede93f79319682f3
@@ -331,7 +331,7 @@ def install_rustfmt(self):
@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:
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.