Skip to content

Commit 5635dea

Browse files
committed
Increased the number of tests that the CI should perform
1 parent dafea6a commit 5635dea

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lambda-buffers-compiler/build.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
}:
1010
let
1111
inherit pkgs;
12+
tests = 10000;
1213
project = {
1314
src = ./.;
1415

@@ -28,6 +29,12 @@ let
2829

2930
# Enable strict compilation
3031
lambda-buffers-compiler.configureFlags = [ "-f-dev" ];
32+
33+
# Set the number of QuickCheck and Hedgehog tests
34+
lambda-buffers-compiler.components.tests.lambda-buffers-compiler-tests.configureFlags = [
35+
"--hedgehog-tests=${tests}"
36+
"--quickcheck-tests=${tests}"
37+
];
3138
};
3239
})
3340
];

0 commit comments

Comments
 (0)