diff options
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index 0733911d2b4..c00bcc42057 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -300,7 +300,7 @@ class MachCommands(CommandBase): release = ["--release"] if release else [] ret = 0 with cd(path.join("ports", "geckolib")): - ret = call(["cargo", "test", "-p", "stylo_tests"] + release, env=env) + ret = call(["cargo", "test", "-p", "stylo_tests", "--features", "testing"] + release, env=env) if ret != 0: return ret with cd(path.join("ports", "geckolib")): |