From 4978aa74e7f11af445ca14cc8b4eb57bf2d208bd Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Tue, 15 Aug 2023 08:13:14 +0000 Subject: [PATCH] tests: temporarily xfail script test closes #1717 --- tests/test_scripts.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_scripts.py b/tests/test_scripts.py index 5c5ece7b..d18cb2d9 100644 --- a/tests/test_scripts.py +++ b/tests/test_scripts.py @@ -51,7 +51,9 @@ def get_rule_path(): ), pytest.param("show-features.py", [get_file_path()]), pytest.param("show-features.py", ["-F", "0x407970", get_file_path()]), - pytest.param("show-unused-features.py", [get_file_path()]), + pytest.param( + "show-unused-features.py", [get_file_path()], marks=pytest.mark.xfail(reason="relies on legacy ruleset") + ), pytest.param( "capa_as_library.py", [get_file_path()], marks=pytest.mark.xfail(reason="relies on legacy ruleset") ),