Commit 8e8b1619 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.sqlalchemy-continuum: disable failing test

- use builtins.attrValues
parent 83c82021
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -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"
  ];