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:
Ana Maria Martinez Gomez
2021-04-06 21:53:22 +02:00
parent d412e66cea
commit fa52dbcf84

View File

@@ -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(