diff options
author | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2018-12-24 14:47:09 +0100 |
---|---|---|
committer | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2018-12-24 14:47:09 +0100 |
commit | 40337181c31bcbd5beafc7944ded92848aac1af7 (patch) | |
tree | b14f07ba57aed6f8d4e802550409e0b15e46589b /python/servo/testing_commands.py | |
parent | 6840c18389982a4719f41d9ba78514ea6c0cdc37 (diff) | |
download | servo-40337181c31bcbd5beafc7944ded92848aac1af7.tar.gz servo-40337181c31bcbd5beafc7944ded92848aac1af7.zip |
Make create-wpt mach command use new manifest update implementation
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 7924cd5e7dd..c8bb5e7511c 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -928,12 +928,13 @@ testing/web-platform/mozilla/tests for Servo-only tests""" % reference_path) if not kwargs["no_run"]: p = create_parser_wpt() - args = ["--manifest-update"] + args = [] if kwargs["release"]: args.append("--release") args.append(test_path) wpt_kwargs = vars(p.parse_args(args)) self.context.commands.dispatch("test-wpt", self.context, **wpt_kwargs) + self.context.commands.dispatch("update-manifest", self.context) if editor: proc.wait() |