python313Packages.sqlalchemy-utils: disable failing test

This commit is contained in:
Martin Weinelt 2024-11-14 03:28:59 +01:00
parent bdfcd349ba
commit 1a671cd654
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

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