From 19fea737b814cc27c6a2665d54c680317cf2f9bc Mon Sep 17 00:00:00 2001 From: Harinn Date: Tue, 12 May 2026 13:02:04 +0700 Subject: [PATCH] python3Packages.asf-search: skip tests with missing helper and network access --- pkgs/development/python-modules/asf-search/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/python-modules/asf-search/default.nix b/pkgs/development/python-modules/asf-search/default.nix index 402bb9d11360..734cf435cf11 100644 --- a/pkgs/development/python-modules/asf-search/default.nix +++ b/pkgs/development/python-modules/asf-search/default.nix @@ -51,6 +51,13 @@ buildPythonPackage rec { tenacity ]; + disabledTestPaths = [ + # requires asf_enumeration, not packaged + "tests/BaselineSearch/test_baseline_search.py" + # requires network + "tests/Pair/test_Pair.py" + ]; + pythonImportsCheck = [ "asf_search" ]; meta = {