python312Packages.datasette: ignore deprecation warnings
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user