From 39f88f6f8a88542d02985fbd43804da5563713e3 Mon Sep 17 00:00:00 2001 From: Gleb Koval Date: Wed, 26 Feb 2025 03:31:11 +0000 Subject: [PATCH] test: disable parallel test execution to avoid race conditions --- src/test/wacc/examples.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/wacc/examples.scala b/src/test/wacc/examples.scala index 88cdad5..2ef9100 100644 --- a/src/test/wacc/examples.scala +++ b/src/test/wacc/examples.scala @@ -1,6 +1,6 @@ package wacc -import org.scalatest.{ParallelTestExecution, BeforeAndAfterAll} +import org.scalatest.BeforeAndAfterAll import org.scalatest.flatspec.AnyFlatSpec import org.scalatest.Inspectors.forEvery import java.io.File @@ -8,7 +8,7 @@ import sys.process._ import java.io.PrintStream import scala.io.Source -class ParallelExamplesSpec extends AnyFlatSpec with BeforeAndAfterAll with ParallelTestExecution { +class ParallelExamplesSpec extends AnyFlatSpec with BeforeAndAfterAll { val files = allWaccFiles("wacc-examples/valid").map { p => (p.toString, List(0))