aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/testing_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r--python/servo/testing_commands.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py
index 1f03addfc6a..04b0542a079 100644
--- a/python/servo/testing_commands.py
+++ b/python/servo/testing_commands.py
@@ -276,6 +276,11 @@ class MachCommands(CommandBase):
args += ["%s" % ' '.join(features + ["testing"])]
else:
args += ["testing"]
+
+ args += test_patterns
+
+ if nocapture:
+ args += ["--", "--nocapture"]
return call(args, env=env, cwd=self.servo_crate())
@Command('test-stylo',