@@ -916,19 +916,24 @@ def test_multi_marker_removes_duplicates() -> None:
916916 ("sys.platform == 'win32'" , {"sys_platform" : "linux2" }, False ),
917917 ("platform.version in 'Ubuntu'" , {"platform_version" : "#39" }, False ),
918918 ("platform.machine=='x86_64'" , {"platform_machine" : "x86_64" }, True ),
919- ('"tegra" in platform_machine ' , {"platform_machine " : "5.10.120-tegra" }, True ),
920- ('"tegra" in platform_machine ' , {"platform_machine " : "5.10.120" }, False ),
919+ ('"tegra" in platform_release ' , {"platform_release " : "5.10.120-tegra" }, True ),
920+ ('"tegra" in platform_release ' , {"platform_release " : "5.10.120" }, False ),
921921 (
922- '"tegra" not in platform_machine ' ,
923- {"platform_machine " : "5.10.120-tegra" },
922+ '"tegra" not in platform_release ' ,
923+ {"platform_release " : "5.10.120-tegra" },
924924 False ,
925925 ),
926- ('"tegra" not in platform_machine ' , {"platform_machine " : "5.10.120" }, True ),
926+ ('"tegra" not in platform_release ' , {"platform_release " : "5.10.120" }, True ),
927927 (
928928 "platform_release != '4.9.253-tegra'" ,
929929 {"platform_release" : "4.9.254-tegra" },
930930 True ,
931931 ),
932+ (
933+ "platform_release >= '6.6.0+rpt-rpi-v8'" ,
934+ {"platform_release" : "6.6.20+rpt-rpi-v8" },
935+ True ,
936+ ),
932937 (
933938 "platform_release < '5.10.123-tegra' and platform_release >= '4.9.254-tegra'" ,
934939 {"platform_release" : "4.9.254-tegra" },
0 commit comments