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 268b373 commit 1637c98Copy full SHA for 1637c98
src/Stack/Build/Execute.hs
@@ -358,6 +358,9 @@ executePlan' plan ee@ExecuteEnv {..} = do
358
Just kg -> kg
359
Nothing -> boptsTests eeBuildOpts || boptsBenchmarks eeBuildOpts
360
concurrentFinal =
361
+ -- TODO it probably makes more sense to use a lock for test suites
362
+ -- and just have the execution blocked. Turning off all concurrency
363
+ -- on finals based on the --test option doesn't fit in well.
364
if boptsTests eeBuildOpts
365
then concurrentTests
366
else True
0 commit comments