Remove references to stylo from mach test-unit (#39562)

`stylo` does not live in the servo repository anymore.

Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
This commit is contained in:
Simon Wülker 2025-09-29 09:55:02 +02:00 committed by GitHub
parent 2560543ac7
commit 6c062bbea8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -221,7 +221,6 @@ class MachCommands(CommandBase):
"selectors", "selectors",
"servo_config", "servo_config",
"servoshell", "servoshell",
"stylo_config",
] ]
if not packages: if not packages:
packages = set(os.listdir(path.join(self.context.topdir, "tests", "unit"))) - set([".DS_Store"]) packages = set(os.listdir(path.join(self.context.topdir, "tests", "unit"))) - set([".DS_Store"])
@ -235,8 +234,6 @@ class MachCommands(CommandBase):
except KeyError: except KeyError:
pass pass
packages.discard("stylo")
# Return if there is nothing to do. # Return if there is nothing to do.
if len(packages) == 0 and len(in_crate_packages) == 0: if len(packages) == 0 and len(in_crate_packages) == 0:
return 0 return 0