python3Packages.spyder-kernels: run tests (#443058)

dotlambda 4010ebb4 5c8c85f7

Changed files
+46 -2
pkgs
development
python-modules
spyder-kernels
+46 -2
pkgs/development/python-modules/spyder-kernels/default.nix
···
pyxdg,
pyzmq,
wurlitzer,
+
+
# tests
+
anyio,
+
django,
+
flaky,
+
h5py,
+
numpy,
+
pandas,
+
pillow,
+
polars,
+
pyarrow,
+
pydicom,
+
pytestCheckHook,
+
scipy,
+
writableTmpDirAsHomeHook,
+
xarray,
}:
buildPythonPackage rec {
···
wurlitzer
];
-
# No tests
-
doCheck = false;
+
nativeCheckInputs = [
+
anyio
+
django
+
flaky
+
h5py
+
numpy
+
pandas
+
pillow
+
polars
+
pyarrow
+
pydicom
+
pytestCheckHook
+
scipy
+
writableTmpDirAsHomeHook
+
xarray
+
];
+
+
disabledTests = [
+
"test_umr_reload_modules"
+
# OSError: Kernel failed to start
+
"test_debug_namespace"
+
"test_enter_debug_after_interruption"
+
"test_global_message"
+
"test_interrupt_long_sleep"
+
"test_interrupt_short_loop"
+
"test_matplotlib_inline"
+
"test_multiprocessing"
+
"test_np_threshold"
+
"test_runfile"
+
];
pythonImportsCheck = [ "spyder_kernels" ];