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

authored by dotlambda and committed by GitHub 4010ebb4 5c8c85f7

+46 -2
+46 -2
pkgs/development/python-modules/spyder-kernels/default.nix
··· 14 14 pyxdg, 15 15 pyzmq, 16 16 wurlitzer, 17 + 18 + # tests 19 + anyio, 20 + django, 21 + flaky, 22 + h5py, 23 + numpy, 24 + pandas, 25 + pillow, 26 + polars, 27 + pyarrow, 28 + pydicom, 29 + pytestCheckHook, 30 + scipy, 31 + writableTmpDirAsHomeHook, 32 + xarray, 17 33 }: 18 34 19 35 buildPythonPackage rec { ··· 44 60 wurlitzer 45 61 ]; 46 62 47 - # No tests 48 - doCheck = false; 63 + nativeCheckInputs = [ 64 + anyio 65 + django 66 + flaky 67 + h5py 68 + numpy 69 + pandas 70 + pillow 71 + polars 72 + pyarrow 73 + pydicom 74 + pytestCheckHook 75 + scipy 76 + writableTmpDirAsHomeHook 77 + xarray 78 + ]; 79 + 80 + disabledTests = [ 81 + "test_umr_reload_modules" 82 + # OSError: Kernel failed to start 83 + "test_debug_namespace" 84 + "test_enter_debug_after_interruption" 85 + "test_global_message" 86 + "test_interrupt_long_sleep" 87 + "test_interrupt_short_loop" 88 + "test_matplotlib_inline" 89 + "test_multiprocessing" 90 + "test_np_threshold" 91 + "test_runfile" 92 + ]; 49 93 50 94 pythonImportsCheck = [ "spyder_kernels" ]; 51 95