summary refs log tree commit diff
path: root/pkgs/development/python-modules/skorch
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-16 05:02:55 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-02-16 06:56:20 +0100
commitd0160b489ff048ee5cbda92526a06a44daa3bcd1 (patch)
treeb794782269f8ef76e57ed44e119c2d7745615552 /pkgs/development/python-modules/skorch
parenta5f156fde86f497b2f20f51a5008774168fde7a3 (diff)
downloadnixpkgs-d0160b489ff048ee5cbda92526a06a44daa3bcd1.tar
nixpkgs-d0160b489ff048ee5cbda92526a06a44daa3bcd1.tar.gz
nixpkgs-d0160b489ff048ee5cbda92526a06a44daa3bcd1.tar.bz2
nixpkgs-d0160b489ff048ee5cbda92526a06a44daa3bcd1.tar.lz
nixpkgs-d0160b489ff048ee5cbda92526a06a44daa3bcd1.tar.xz
nixpkgs-d0160b489ff048ee5cbda92526a06a44daa3bcd1.tar.zst
nixpkgs-d0160b489ff048ee5cbda92526a06a44daa3bcd1.zip
pythonPackages.skorch: Disable failing tests
Diffstat (limited to 'pkgs/development/python-modules/skorch')
-rw-r--r--pkgs/development/python-modules/skorch/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/skorch/default.nix b/pkgs/development/python-modules/skorch/default.nix
index bb41f61517f..7ea4604ff37 100644
--- a/pkgs/development/python-modules/skorch/default.nix
+++ b/pkgs/development/python-modules/skorch/default.nix
@@ -26,10 +26,13 @@ buildPythonPackage rec {
   propagatedBuildInputs = [ numpy pytorch scikitlearn scipy tabulate tqdm ];
   checkInputs = [ pytest pytestcov flaky pandas pytestCheckHook ];
 
-  # on CPU, these expect artifacts from previous GPU run
   disabledTests = [
+    # on CPU, these expect artifacts from previous GPU run
     "test_load_cuda_params_to_cpu"
+    # failing tests
     "test_pickle_load"
+    "test_grid_search_with_slds_"
+    "test_grid_search_with_dict_works"
   ];
 
   meta = with lib; {