fetchtastic: disable failing tests on darwin

This commit is contained in:
Fabian Affolter
2026-05-02 21:40:58 +02:00
parent a440990510
commit a88ad9835c
+7
View File
@@ -1,5 +1,6 @@
{
lib,
stdenv,
fetchFromGitHub,
python3,
}:
@@ -38,6 +39,12 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
pythonImportsCheck = [ "fetchtastic" ];
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
"test_download_firmware_success"
"test_get_target_path_for_release"
"test_platform_functions"
];
meta = {
description = "Utility for downloading and managing the latest Meshtastic firmware releases";
homepage = "https://github.com/jeremiah-k/fetchtastic";