We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92630f4 commit e1f5603Copy full SHA for e1f5603
test/coverage/default.nix
@@ -26,7 +26,9 @@ let
26
27
in recurseIntoAttrs ({
28
# Does not work on ghcjs because it needs zlib.
29
- meta.disabled = stdenv.hostPlatform.isGhcjs;
+ meta.disabled = stdenv.hostPlatform.isGhcjs
30
+ # For some reason the `.tix` file is not created on armv7a android (not sure why)
31
+ || stdenv.hostPlatform.isAndroid && stdenv.hostPlatform.isAarch32;
32
run = stdenv.mkDerivation {
33
name = "coverage-test";
34
0 commit comments