nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.parametrize-from-file: disable failing test

+9 -2
+9 -2
pkgs/development/python-modules/parametrize-from-file/default.nix
··· 21 21 src = fetchPypi { 22 22 inherit version; 23 23 pname = "parametrize_from_file"; 24 - sha256 = "1c91j869n2vplvhawxc1sv8km8l53bhlxhhms43fyjsqvy351v5j"; 24 + hash = "sha256-suxQht9YS+8G0RXCTuEahaI60daBda7gpncLmwySIbE="; 25 25 }; 26 26 27 27 patches = [ ··· 54 54 toml 55 55 ]; 56 56 57 - pythonImportsCheck = [ "parametrize_from_file" ]; 57 + pythonImportsCheck = [ 58 + "parametrize_from_file" 59 + ]; 60 + 61 + disabledTests = [ 62 + # https://github.com/kalekundert/parametrize_from_file/issues/19 63 + "test_load_suite_params_err" 64 + ]; 58 65 59 66 meta = with lib; { 60 67 description = "Read unit test parameters from config files";