lol

flutter_rust_bridge_codegen: skip timeout tests on darwin

aleksana 61eda88c 10b25794

+12 -5
+12 -5
pkgs/by-name/fl/flutter_rust_bridge_codegen/package.nix
··· 3 3 fetchFromGitHub, 4 4 rustPlatform, 5 5 cargo-expand, 6 + stdenv, 6 7 }: 7 8 rustPlatform.buildRustPackage rec { 8 9 pname = "flutter_rust_bridge_codegen"; ··· 26 27 27 28 # needed to run text (see https://github.com/fzyzcjy/flutter_rust_bridge/blob/ae970bfafdf80b9eb283a2167b972fb2e6504511/frb_codegen/src/library/utils/logs.rs#L43) 28 29 logLevel = "debug"; 29 - checkFlags = [ 30 - # Disabled because these tests need a different version of anyhow than the package itself 31 - "--skip=tests::test_execute_generate_on_frb_example_dart_minimal" 32 - "--skip=tests::test_execute_generate_on_frb_example_pure_dart" 33 - ]; 30 + checkFlags = 31 + [ 32 + # Disabled because these tests need a different version of anyhow than the package itself 33 + "--skip=tests::test_execute_generate_on_frb_example_dart_minimal" 34 + "--skip=tests::test_execute_generate_on_frb_example_pure_dart" 35 + ] 36 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 37 + # Timeout on darwin, not related to networking in sandbox 38 + "--skip=library::codegen::controller::tests::test_run_with_watch" 39 + "--skip=library::codegen::generator::api_dart::tests::test_functions" 40 + ]; 34 41 35 42 meta = { 36 43 mainProgram = "flutter_rust_bridge_codegen";