Skip to content

Commit

Permalink
Changed default to single-threaded test evaluator (com-lihaoyi#1074)
Browse files Browse the repository at this point in the history
We see sporadic failures in CI, which I hope we can avoid by this.
These come in most cases from coursier or scalanative.
And current coursier is known to have some parallelization issues.

Pull request: com-lihaoyi#1074
  • Loading branch information
lefou authored Dec 16, 2020
1 parent 2568785 commit 8f32e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/test/src/util/TestEvaluator.scala
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object TestEvaluator{
class TestEvaluator(
module: TestUtil.BaseModule,
failFast: Boolean = false,
threads: Option[Int] = None
threads: Option[Int] = Some(1)
)(implicit fullName: sourcecode.FullName,
tp: TestPath
){
Expand Down

0 comments on commit 8f32e31

Please sign in to comment.