From 97f633312fe6ce038d4176d320cedb18ac09d2d1 Mon Sep 17 00:00:00 2001 From: mr-tz Date: Wed, 7 Dec 2022 16:44:52 +0100 Subject: [PATCH] skip smda tests until we remove the backend --- tests/test_smda_features.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_smda_features.py b/tests/test_smda_features.py index 6614c24d..91897c59 100644 --- a/tests/test_smda_features.py +++ b/tests/test_smda_features.py @@ -13,6 +13,7 @@ from fixtures import parametrize import capa.features.file +@pytest.mark.skip(reason="SMDA tests fail and we're deprecating this backend in the next major release") @parametrize( "sample,scope,feature,expected", fixtures.FEATURE_PRESENCE_TESTS, @@ -25,6 +26,7 @@ def test_smda_features(sample, scope, feature, expected): fixtures.do_test_feature_presence(fixtures.get_smda_extractor, sample, scope, feature, expected) +@pytest.mark.skip(reason="SMDA tests fail and we're deprecating this backend in the next major release") @parametrize( "sample,scope,feature,expected", fixtures.FEATURE_COUNT_TESTS,