From 6c062bbea810a9b145b305f88af1b02715566c42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20W=C3=BClker?= Date: Mon, 29 Sep 2025 09:55:02 +0200 Subject: [PATCH] Remove references to stylo from `mach test-unit` (#39562) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `stylo` does not live in the servo repository anymore. Signed-off-by: Simon Wülker --- python/servo/testing_commands.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index b780deff89a..15802213a65 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -221,7 +221,6 @@ class MachCommands(CommandBase): "selectors", "servo_config", "servoshell", - "stylo_config", ] if not packages: packages = set(os.listdir(path.join(self.context.topdir, "tests", "unit"))) - set([".DS_Store"]) @@ -235,8 +234,6 @@ class MachCommands(CommandBase): except KeyError: pass - packages.discard("stylo") - # Return if there is nothing to do. if len(packages) == 0 and len(in_crate_packages) == 0: return 0