python313Packages.sqlalchemy-utils: disable failing test

This commit is contained in:
Martin Weinelt
2024-11-18 19:24:03 +01:00
parent bdfcd349ba
commit 1a671cd654
@@ -22,6 +22,7 @@
pyodbc,
pytestCheckHook,
python-dateutil,
pythonAtLeast,
pythonOlder,
pytz,
setuptools,
@@ -81,10 +82,15 @@ buildPythonPackage rec {
psycopg2cffi
];
disabledTests = [
"test_create_database_twice"
"test_create_and_drop"
];
disabledTests =
[
"test_create_database_twice"
"test_create_and_drop"
]
++ lib.optionals (pythonAtLeast "3.13") [
# https://github.com/kvesteri/sqlalchemy-utils/issues/764
"test_render_mock_ddl"
];
pytestFlagsArray = [
"-W"