From 3fc2a27229a39f5ba93d0bf762f27ad11708a45c Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Mon, 28 Jul 2025 20:25:37 +0200 Subject: [PATCH] platformio: fix deselected test paths --- pkgs/development/embedded/platformio/core.nix | 112 +++++++++--------- 1 file changed, 56 insertions(+), 56 deletions(-) diff --git a/pkgs/development/embedded/platformio/core.nix b/pkgs/development/embedded/platformio/core.nix index 6151542ed561..e4dfae81386d 100644 --- a/pkgs/development/embedded/platformio/core.nix +++ b/pkgs/development/embedded/platformio/core.nix @@ -138,62 +138,62 @@ buildPythonApplication rec { # requires internet connection "tests/misc/ino2cpp/test_ino2cpp.py" - "commands/pkg/test_exec.py::test_pkg_specified" - "commands/pkg/test_exec.py::test_unrecognized_options" - "commands/test_ci.py::test_ci_boards" - "commands/test_ci.py::test_ci_build_dir" - "commands/test_ci.py::test_ci_keep_build_dir" - "commands/test_ci.py::test_ci_lib_and_board" - "commands/test_ci.py::test_ci_project_conf" - "commands/test_init.py::test_init_custom_framework" - "commands/test_init.py::test_init_duplicated_boards" - "commands/test_init.py::test_init_enable_auto_uploading" - "commands/test_init.py::test_init_ide_atom" - "commands/test_init.py::test_init_ide_clion" - "commands/test_init.py::test_init_ide_eclipse" - "commands/test_init.py::test_init_ide_vscode" - "commands/test_init.py::test_init_incorrect_board" - "commands/test_init.py::test_init_special_board" - "commands/test_lib.py::test_global_install_archive" - "commands/test_lib.py::test_global_install_registry" - "commands/test_lib.py::test_global_install_repository" - "commands/test_lib.py::test_global_lib_list" - "commands/test_lib.py::test_global_lib_uninstall" - "commands/test_lib.py::test_global_lib_update" - "commands/test_lib.py::test_global_lib_update_check" - "commands/test_lib.py::test_install_duplicates" - "commands/test_lib.py::test_lib_show" - "commands/test_lib.py::test_lib_stats" - "commands/test_lib.py::test_saving_deps" - "commands/test_lib.py::test_search" - "commands/test_lib.py::test_update" - "commands/test_lib_complex.py::test_global_install_archive" - "commands/test_lib_complex.py::test_global_install_registry" - "commands/test_lib_complex.py::test_global_install_repository" - "commands/test_lib_complex.py::test_global_lib_list" - "commands/test_lib_complex.py::test_global_lib_uninstall" - "commands/test_lib_complex.py::test_global_lib_update" - "commands/test_lib_complex.py::test_global_lib_update_check" - "commands/test_lib_complex.py::test_install_duplicates" - "commands/test_lib_complex.py::test_lib_show" - "commands/test_lib_complex.py::test_lib_stats" - "commands/test_lib_complex.py::test_search" - "package/test_manager.py::test_download" - "package/test_manager.py::test_install_force" - "package/test_manager.py::test_install_from_registry" - "package/test_manager.py::test_install_lib_depndencies" - "package/test_manager.py::test_registry" - "package/test_manager.py::test_uninstall" - "package/test_manager.py::test_update_with_metadata" - "package/test_manager.py::test_update_without_metadata" - "test_builder.py::test_build_flags" - "test_builder.py::test_build_unflags" - "test_builder.py::test_debug_custom_build_flags" - "test_builder.py::test_debug_default_build_flags" - "test_misc.py::test_api_cache" - "test_misc.py::test_ping_internet_ips" - "test_misc.py::test_platformio_cli" - "test_pkgmanifest.py::test_packages" + "tests/commands/pkg/test_exec.py::test_pkg_specified" + "tests/commands/pkg/test_exec.py::test_unrecognized_options" + "tests/commands/test_ci.py::test_ci_boards" + "tests/commands/test_ci.py::test_ci_build_dir" + "tests/commands/test_ci.py::test_ci_keep_build_dir" + "tests/commands/test_ci.py::test_ci_lib_and_board" + "tests/commands/test_ci.py::test_ci_project_conf" + "tests/commands/test_init.py::test_init_custom_framework" + "tests/commands/test_init.py::test_init_duplicated_boards" + "tests/commands/test_init.py::test_init_enable_auto_uploading" + "tests/commands/test_init.py::test_init_ide_atom" + "tests/commands/test_init.py::test_init_ide_clion" + "tests/commands/test_init.py::test_init_ide_eclipse" + "tests/commands/test_init.py::test_init_ide_vscode" + "tests/commands/test_init.py::test_init_incorrect_board" + "tests/commands/test_init.py::test_init_special_board" + "tests/commands/test_lib.py::test_global_install_archive" + "tests/commands/test_lib.py::test_global_install_registry" + "tests/commands/test_lib.py::test_global_install_repository" + "tests/commands/test_lib.py::test_global_lib_list" + "tests/commands/test_lib.py::test_global_lib_uninstall" + "tests/commands/test_lib.py::test_global_lib_update" + "tests/commands/test_lib.py::test_global_lib_update_check" + "tests/commands/test_lib.py::test_install_duplicates" + "tests/commands/test_lib.py::test_lib_show" + "tests/commands/test_lib.py::test_lib_stats" + "tests/commands/test_lib.py::test_saving_deps" + "tests/commands/test_lib.py::test_search" + "tests/commands/test_lib.py::test_update" + "tests/commands/test_lib_complex.py::test_global_install_archive" + "tests/commands/test_lib_complex.py::test_global_install_registry" + "tests/commands/test_lib_complex.py::test_global_install_repository" + "tests/commands/test_lib_complex.py::test_global_lib_list" + "tests/commands/test_lib_complex.py::test_global_lib_uninstall" + "tests/commands/test_lib_complex.py::test_global_lib_update" + "tests/commands/test_lib_complex.py::test_global_lib_update_check" + "tests/commands/test_lib_complex.py::test_install_duplicates" + "tests/commands/test_lib_complex.py::test_lib_show" + "tests/commands/test_lib_complex.py::test_lib_stats" + "tests/commands/test_lib_complex.py::test_search" + "tests/package/test_manager.py::test_download" + "tests/package/test_manager.py::test_install_force" + "tests/package/test_manager.py::test_install_from_registry" + "tests/package/test_manager.py::test_install_lib_depndencies" + "tests/package/test_manager.py::test_registry" + "tests/package/test_manager.py::test_uninstall" + "tests/package/test_manager.py::test_update_with_metadata" + "tests/package/test_manager.py::test_update_without_metadata" + "tests/test_builder.py::test_build_flags" + "tests/test_builder.py::test_build_unflags" + "tests/test_builder.py::test_debug_custom_build_flags" + "tests/test_builder.py::test_debug_default_build_flags" + "tests/test_misc.py::test_api_cache" + "tests/test_misc.py::test_ping_internet_ips" + "tests/test_misc.py::test_platformio_cli" + "tests/test_pkgmanifest.py::test_packages" ]; disabledTests = [