Skip to content
This repository was archived by the owner on Jun 23, 2020. It is now read-only.

Commit 5bd0e7d

Browse files
committed
Reduce concurrency in tests to prevent spurious fails.
1 parent 5e7e28e commit 5bd0e7d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: scala
22
script:
3-
- sbt ++$TRAVIS_SCALA_VERSION clean update compile test
3+
# the concurrentRestrictions should prevent spurious test failures, see https://github.com/spray/spray/pull/233
4+
- sbt ++$TRAVIS_SCALA_VERSION 'set concurrentRestrictions in Global += Tags.limit(Tags.Test, 1)' clean update compile test
45
scala:
56
- 2.11.0-SNAPSHOT
67
jdk:
@@ -9,6 +10,3 @@ jdk:
910
notifications:
1011
email:
1112
- adriaan.moors@typesafe.com
12-
13-
# if we get weird timeouts, see https://github.com/spray/spray/pull/233
14-
# 'set concurrentRestrictions in Global += Tags.limit(Tags.Test, 1)'

0 commit comments

Comments
 (0)