python312Packages.datasette: ignore deprecation warnings

This commit is contained in:
Martin Weinelt
2024-08-06 18:18:43 +02:00
parent e47d0b5400
commit fddf1534d8
@@ -79,7 +79,12 @@ buildPythonPackage rec {
# takes 30-180 mins to run entire test suite, not worth the CPU resources, slows down reviews
# with pytest-xdist, it still takes around 10 mins with 32 cores
# just run the csv tests, as this should give some indictation of correctness
pytestFlagsArray = [ "tests/test_csv.py" ];
pytestFlagsArray = [
# datasette/app.py:14: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
"-W"
"ignore::DeprecationWarning"
"tests/test_csv.py"
];
disabledTests = [
"facet"