aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/testing_commands.py
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2018-12-26 13:58:16 -0500
committerGitHub <noreply@github.com>2018-12-26 13:58:16 -0500
commit44344452e21fb86e681cda8407dc15f19b05db25 (patch)
tree2f6279a77200537220ff98f48734d6d4cba3bfc0 /python/servo/testing_commands.py
parent7bc6c8d18f5a111eb810c0a922fd683a0c6607e2 (diff)
parent40337181c31bcbd5beafc7944ded92848aac1af7 (diff)
downloadservo-44344452e21fb86e681cda8407dc15f19b05db25.tar.gz
servo-44344452e21fb86e681cda8407dc15f19b05db25.zip
Auto merge of #22549 - ferjm:create.wpt, r=jdm
Make create-wpt mach command use new manifest update implementation - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #22525 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22549) <!-- Reviewable:end -->
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r--python/servo/testing_commands.py3
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()