nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

ipfs-cluster: skip flaky test

Luflosi cabae239 d4cc3846

+12
+12
pkgs/by-name/ip/ipfs-cluster/package.nix
··· 17 17 hash = "sha256-mdLrLiRNudpQ8i0lvwoNAqhSWJ8VMEC1ZRxXHWHpqLY="; 18 18 }; 19 19 20 + checkFlags = 21 + let 22 + skippedTests = [ 23 + # Flaky test, sometimes fails with: 24 + # --- FAIL: TestClustersPeerAddInUnhealthyCluster (7.58s) 25 + # peer_manager_test.go:247: failed to dial: failed to dial QmSookyjcPhxchnHeo2jtssHqe8zdmhgEQiY61yUcWjWp5: all dials failed 26 + # * [/ip4/127.0.0.1/tcp/46571] dial backoff 27 + "TestClustersPeerAddInUnhealthyCluster" 28 + ]; 29 + in 30 + [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ]; 31 + 20 32 __darwinAllowLocalNetworking = true; # required for tests 21 33 22 34 meta = with lib; {