diff options
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 7a821a08679..4d199818380 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -334,6 +334,15 @@ class MachCommands(CommandBase): execfile(run_file, run_globals) return run_globals["run_tests"](**kwargs) + @Command('update-manifest', + description='run test-wpt --manifest-update SKIP_TESTS to regenerate MANIFEST.json', + category='testing', + parser=create_parser_wpt) + def update_manifest(self, **kwargs): + kwargs['test_list'].append(str('SKIP_TESTS')) + kwargs['manifest_update'] = True + return self.test_wpt(**kwargs) + @Command('update-wpt', description='Update the web platform tests', category='testing', |