Skip to content
This repository has been archived by the owner on Dec 8, 2017. It is now read-only.

Commit

Permalink
Merge pull request #15 from wvlet/fix-async-test
Browse files Browse the repository at this point in the history
Add more overhead to heavy handler for avoiding CircleCI test failrues
  • Loading branch information
xerial committed Apr 5, 2017
2 parents 9a6a030 + 740edcf commit 6fc32c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:

test:
override:
- ./sbt "+ test"
- ./sbt ++2.11.8 test
- ./sbt coverage test coverageReport
post:
- ./sbt coverageAggregate coveralls
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class AsyncHandlerTest extends Spec with Timer {
object HeavyHandler extends java.util.logging.Handler {
override def flush(): Unit = {}
override def publish(record: java.util.logging.LogRecord): Unit = {
Thread.sleep(2)
Thread.sleep(5)
}
override def close(): Unit = {}
}

0 comments on commit 6fc32c8

Please sign in to comment.