Skip to content

Commit 6532404

Browse files
committed
Don't run tests in paralell on the JS side
1 parent c5e125f commit 6532404

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ env:
3333
- COURSIER_NO_TERM=1
3434

3535
script:
36-
- sbt scalajavatimeJVM/test scalajavatimeJS/test
36+
- sbt ++$TRAVIS_SCALA_VERSION scalajavatimeJVM/test scalajavatimeJS/test
3737
- sbt docs/makeMicrosite
3838
#- sbt clean coverage test &&
3939
# sbt coverageAggregate

build.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ lazy val scalajavatime = crossProject.crossType(CrossType.Full).in(file("."))
102102
val destinationDir = (sourceManaged in Compile).value
103103
copyAndReplace(srcDirs, destinationDir)
104104
}.taskValue,
105+
parallelExecution in Test := false,
105106
libraryDependencies ++= Seq(
106107
"io.github.cquiroz" %%% "scala-java-locales" % "0.5.0-cldr30"
107108
)

0 commit comments

Comments
 (0)