python313Packages.sqlalchemy-utils: disable failing test
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user