aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/skorch/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/skorch/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/skorch/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/skorch/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/skorch/default.nix
index bb41f61517fc..fd161ecd7531 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/python-modules/skorch/default.nix
+++ b/infra/libkookie/nixpkgs/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; {
@@ -38,5 +41,7 @@ buildPythonPackage rec {
changelog = "https://github.com/skorch-dev/skorch/blob/master/CHANGES.md";
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
+ # TypeError: __init__() got an unexpected keyword argument 'iid'
+ broken = true;
};
}