haskellPackages.http-api-data-qq: disable network dependent test

This commit is contained in:
sternenseemann 2021-12-27 14:58:34 +01:00
parent 96b5f414fe
commit f3a3ddb87b

View File

@ -1041,4 +1041,11 @@ self: super: builtins.intersectAttrs super {
})
] ++ (drv.patches or []);
}) super.graphviz;
# Test case tries to contact the network
http-api-data-qq = overrideCabal (drv: {
testFlags = [
"-p" "!/Can be used with http-client/"
] ++ drv.testFlags or [];
}) super.http-api-data-qq;
}