tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
ipfs-cluster: skip flaky test
Luflosi
5 months ago
cabae239
d4cc3846
+12
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ip
ipfs-cluster
package.nix
+12
pkgs/by-name/ip/ipfs-cluster/package.nix
···
17
17
hash = "sha256-mdLrLiRNudpQ8i0lvwoNAqhSWJ8VMEC1ZRxXHWHpqLY=";
18
18
};
19
19
20
20
+
checkFlags =
21
21
+
let
22
22
+
skippedTests = [
23
23
+
# Flaky test, sometimes fails with:
24
24
+
# --- FAIL: TestClustersPeerAddInUnhealthyCluster (7.58s)
25
25
+
# peer_manager_test.go:247: failed to dial: failed to dial QmSookyjcPhxchnHeo2jtssHqe8zdmhgEQiY61yUcWjWp5: all dials failed
26
26
+
# * [/ip4/127.0.0.1/tcp/46571] dial backoff
27
27
+
"TestClustersPeerAddInUnhealthyCluster"
28
28
+
];
29
29
+
in
30
30
+
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];
31
31
+
20
32
__darwinAllowLocalNetworking = true; # required for tests
21
33
22
34
meta = with lib; {