lol

python310Packages.jupyter-nbextensions-configurator: run tests

+16
+16
pkgs/development/python-modules/jupyter-nbextensions-configurator/default.nix
··· 8 , notebook 9 , pyyaml 10 , tornado 11 }: 12 13 buildPythonPackage rec { ··· 37 notebook 38 pyyaml 39 tornado 40 ]; 41 42 pythonImportsCheck = [ "jupyter_nbextensions_configurator" ];
··· 8 , notebook 9 , pyyaml 10 , tornado 11 + , nose 12 + , pytestCheckHook 13 + , selenium 14 }: 15 16 buildPythonPackage rec { ··· 40 notebook 41 pyyaml 42 tornado 43 + ]; 44 + 45 + nativeCheckInputs = [ 46 + nose 47 + pytestCheckHook 48 + selenium 49 + ]; 50 + 51 + # Those tests fails upstream 52 + disabledTestPaths = [ 53 + "tests/test_application.py" 54 + "tests/test_jupyterhub.py" 55 + "tests/test_nbextensions_configurator.py" 56 ]; 57 58 pythonImportsCheck = [ "jupyter_nbextensions_configurator" ];