python313Packages.es-client: refactor tests (#372344)

authored by Fabian Affolter and committed by GitHub 1eb3bcde 04308e46

+4 -9
+4 -9
pkgs/development/python-modules/es-client/default.nix
··· 59 pythonImportsCheck = [ "es_client" ]; 60 61 disabledTests = [ 62 - # Tests require network access 63 "test_bad_version_raises" 64 "test_basic_operation" 65 - "test_basic_operation" 66 "test_client_info" 67 - "test_logging_options_ecs" 68 - "test_logging_options_json" 69 "test_multiple_hosts_raises" 70 - "test_non_dict_passed" 71 "test_skip_version_check" 72 - # Test wants to handle credentials 73 - "test_logging_options_from_config_file" 74 - # es_client.exceptions.ConfigurationError: Must populate both username and password, or leave both empty 75 - "test_exit_if_not_master " 76 ]; 77 78 meta = with lib; {
··· 59 pythonImportsCheck = [ "es_client" ]; 60 61 disabledTests = [ 62 + # Tests require local Elasticsearch instance 63 "test_bad_version_raises" 64 "test_basic_operation" 65 + "test_client_info" 66 "test_client_info" 67 + "test_exit_if_not_master" 68 "test_multiple_hosts_raises" 69 "test_skip_version_check" 70 + "TestCLIExample" 71 ]; 72 73 meta = with lib; {