python3Packages.clldutils: disable test that fail with pytest7

This commit is contained in:
Martin Weinelt 2022-03-09 18:45:03 +01:00
parent 38317cd91c
commit c5cafcd195

View File

@ -44,6 +44,12 @@ buildPythonPackage rec {
pytest-mock
];
disabledTests = [
# uses pytest.approx which is not supported in a boolean context in pytest7
"test_to_dec"
"test_roundtrip"
];
meta = with lib; {
description = "CSV on the Web";
homepage = "https://github.com/cldf/csvw";