mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
python313Packages.sqlalchemy-utils: disable failing test
This commit is contained in:
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"
|
||||
|
Loading…
Reference in New Issue
Block a user