diff options
author | Daniel <ddefisher@gmail.com> | 2016-05-30 16:28:22 -0400 |
---|---|---|
committer | Daniel <ddefisher@gmail.com> | 2016-06-06 21:31:06 -0400 |
commit | 04b062b2fbab458e5594c11216ec7950231c21f5 (patch) | |
tree | 77c5ee6ad61be16fd48ec1c818e9504d00d93012 /python/servo/testing_commands.py | |
parent | c017438428acdb59d1b3127f0c3e249f2b2658b4 (diff) | |
download | servo-04b062b2fbab458e5594c11216ec7950231c21f5.tar.gz servo-04b062b2fbab458e5594c11216ec7950231c21f5.zip |
add update-manifest command
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', |