mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
python3Packages.pooch: fix tests
This commit is contained in:
parent
789b163aab
commit
2ebbe387c4
1 changed files with 4 additions and 0 deletions
|
@ -20,7 +20,9 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
propagatedBuildInputs = [ packaging appdirs requests ];
|
propagatedBuildInputs = [ packaging appdirs requests ];
|
||||||
|
|
||||||
|
preCheck = "HOME=$TMPDIR";
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
# tries to touch network
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
"pooch_custom_url"
|
"pooch_custom_url"
|
||||||
"pooch_download"
|
"pooch_download"
|
||||||
|
@ -29,6 +31,8 @@ buildPythonPackage rec {
|
||||||
"pooch_corrupted"
|
"pooch_corrupted"
|
||||||
"check_availability"
|
"check_availability"
|
||||||
"downloader"
|
"downloader"
|
||||||
|
"test_retrieve"
|
||||||
|
"test_stream_download"
|
||||||
"test_fetch"
|
"test_fetch"
|
||||||
"decompress"
|
"decompress"
|
||||||
"extractprocessor_fails"
|
"extractprocessor_fails"
|
||||||
|
|
Loading…
Reference in a new issue