pythonPackages.intake: disable broken test

This commit is contained in:
Sandro Jäckel 2021-02-17 11:49:12 +01:00
parent 00d6078d8e
commit 8a78967cd8
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -64,14 +64,17 @@ buildPythonPackage rec {
PATH=$out/bin:$PATH
'';
# disable tests which touch network
disabledTests = ''
disabledTests = [
# disable tests which touch network
"test_discover"
"test_filtered_compressed_cache"
"test_get_dir"
"test_remote_cat"
"http"
'';
# broken test
"test_read_pattern_with"
];
meta = with lib; {
description = "Data load and catalog system";