mirror of
https://github.com/mandiant/capa.git
synced 2026-02-04 11:07:53 -08:00
ci: skip smda tests in win32
Due to a bug, two `test_smda_features` tests are failing: https://github.com/danielplohmann/smda/issues/20 Disable them until the bug is fixed.
This commit is contained in:
@@ -15,9 +15,10 @@ from fixtures import *
|
||||
FEATURE_PRESENCE_TESTS,
|
||||
indirect=["sample", "scope"],
|
||||
)
|
||||
@pytest.mark.xfail(sys.version_info < (3, 0), reason="SMDA only works on py3")
|
||||
@pytest.mark.xfail(sys.platform == "win32", reason="SMDA bug: https://github.com/danielplohmann/smda/issues/20")
|
||||
def test_smda_features(sample, scope, feature, expected):
|
||||
with xfail(sys.version_info < (3, 0), reason="SMDA only works on py3"):
|
||||
do_test_feature_presence(get_smda_extractor, sample, scope, feature, expected)
|
||||
do_test_feature_presence(get_smda_extractor, sample, scope, feature, expected)
|
||||
|
||||
|
||||
@parametrize(
|
||||
|
||||
Reference in New Issue
Block a user