lol

python3Packages.flask_sqlalchemy: disable flaky test

+21 -6
+21 -6
pkgs/development/python-modules/flask-sqlalchemy/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, flask, mock, sqlalchemy, pytest }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , flask 5 + , mock 6 + , sqlalchemy 7 + , pytestCheckHook 8 + }: 2 9 3 10 buildPythonPackage rec { 4 11 pname = "Flask-SQLAlchemy"; ··· 9 16 sha256 = "2bda44b43e7cacb15d4e05ff3cc1f8bc97936cc464623424102bfc2c35e95912"; 10 17 }; 11 18 12 - propagatedBuildInputs = [ flask sqlalchemy ]; 13 - checkInputs = [ mock pytest ]; 19 + propagatedBuildInputs = [ 20 + flask 21 + sqlalchemy 22 + ]; 23 + 24 + checkInputs = [ 25 + mock 26 + pytestCheckHook 27 + ]; 14 28 15 - checkPhase = '' 16 - pytest 17 - ''; 29 + disabledTests = [ 30 + # flaky 31 + "test_session_scoping_changing" 32 + ]; 18 33 19 34 meta = with lib; { 20 35 description = "SQLAlchemy extension for Flask";