Break the following dependency cycles
(testdep) 1. tasty-hedgehog <-> tasty-expected-failure (testdep) 2. lifted-async ---> tasty-hedgehog -> hedgehog -> lifted-async
This commit is contained in:
parent
3aae69103b
commit
3fa0bf026b
@ -547,6 +547,12 @@ self: super: builtins.intersectAttrs super {
|
|||||||
# Break infinite recursion cycle between devtools and mprelude.
|
# Break infinite recursion cycle between devtools and mprelude.
|
||||||
devtools = super.devtools.override { mprelude = dontCheck super.mprelude; };
|
devtools = super.devtools.override { mprelude = dontCheck super.mprelude; };
|
||||||
|
|
||||||
|
# Break dependency cycle between tasty-hedgehog and tasty-expected-failure
|
||||||
|
tasty-hedgehog = dontCheck super.tasty-hedgehog;
|
||||||
|
|
||||||
|
# Break dependency cycle between hedgehog, tasty-hedgehog and lifted-async
|
||||||
|
lifted-async = dontCheck super.lifted-async;
|
||||||
|
|
||||||
# loc and loc-test depend on each other for testing. Break that infinite cycle:
|
# loc and loc-test depend on each other for testing. Break that infinite cycle:
|
||||||
loc-test = super.loc-test.override { loc = dontCheck self.loc; };
|
loc-test = super.loc-test.override { loc = dontCheck self.loc; };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user