python310Packages.sqlalchemy-continuum: disable failing test

- use builtins.attrValues
This commit is contained in:
Fabian Affolter
2023-02-17 01:05:40 +01:00
parent 83c82021cd
commit 8e8b161929
@@ -54,15 +54,16 @@ buildPythonPackage rec {
psycopg2
pymysql
pytestCheckHook
] ++ passthru.optional-dependencies.flask
++ passthru.optional-dependencies.flask-login
++ passthru.optional-dependencies.flask-sqlalchemy
++ passthru.optional-dependencies.flexmock
++ passthru.optional-dependencies.i18n;
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
# indicate tests that we don't have a database server at hand
# Indicate tests that we don't have a database server at hand
DB = "sqlite";
disabledTestPaths = [
# Test doesn't support latest SQLAlchemy
"tests/plugins/test_flask.py"
];
pythonImportsCheck = [
"sqlalchemy_continuum"
];