We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9d9457 commit 036df04Copy full SHA for 036df04
1 file changed
blackbox.php
@@ -10,10 +10,6 @@
10
};
11
12
Application::new($argv)
13
- ->when(
14
- \getenv('BLACKBOX_SET_SIZE') !== false,
15
- static fn(Application $app) => $app->scenariiPerProof((int) \getenv('BLACKBOX_SET_SIZE')),
16
- )
17
->disableMemoryLimit()
18
->codeCoverage(
19
CodeCoverage::of(
@@ -28,5 +24,9 @@
28
24
false => 100,
29
25
default => 1,
30
26
})
27
+ ->when(
+ \getenv('BLACKBOX_SET_SIZE') !== false,
+ static fn(Application $app) => $app->scenariiPerProof((int) \getenv('BLACKBOX_SET_SIZE')),
+ )
31
->tryToProve(Load::everythingIn(__DIR__.'/proofs/'))
32
->exit();
0 commit comments