Unverified Commit 4010ebb4 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

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

parents 5c8c85f7 0c18f6b0
Loading
Loading
Loading
Loading
+46 −2
Original line number Diff line number Diff line
@@ -14,6 +14,22 @@
  pyxdg,
  pyzmq,
  wurlitzer,

  # tests
  anyio,
  django,
  flaky,
  h5py,
  numpy,
  pandas,
  pillow,
  polars,
  pyarrow,
  pydicom,
  pytestCheckHook,
  scipy,
  writableTmpDirAsHomeHook,
  xarray,
}:

buildPythonPackage rec {
@@ -44,8 +60,36 @@ 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" ];