sugakandrey / scalamu

Mutation testing for Scala
GNU General Public License v3.0
43 stars 2 forks source link

Analyzing coverage is failed by timeout when using Akka Actors #5

Open ashashev opened 6 years ago

ashashev commented 6 years ago

I use scalamu set plugin v.0.1.1, sbt v.1.1.1 (and v.1.0.3) and Akka Actors v.2.4.20. When I call mutationTest from sbt console I get follow output:

sbt:scalamu-not-response> mutationTest
23:13:06.421 [MAIN-APP - main] INFO  o.s.c.EntryPoint - Verbose logging is disabled, if you encounter any problems you may want to turn it on.
23:13:09.560 [MAIN-APP - main] INFO  o.s.c.c.MemoryReporter - Finished coverage instrumentation. Total 16 statements.
23:13:12.052 [MAIN-APP - main] INFO  o.s.c.EntryPoint - Finished recompilation in 4 seconds.
23:13:12.053 [MAIN-APP - main] INFO  o.s.c.EntryPoint - Total mutations generated: 8
23:13:14.835 [COVERAGE-WORKER - main] INFO  o.s.c.p.CoverageProcess - Discovered 1 test suites. Analyzing coverage now...
23:14:14.244 [MAIN-APP - main] ERROR o.s.c.r.CoverageAnalyser - Timed out while waiting for coverage report. Time limit: 1 minute. java.util.concurrent.TimeoutException: Futures timed out after [1 minute]. Make sure the environment is correctly set up.

I prepared an example for this behavior: https://github.com/ashashev/scalamu-not-response

Probably I make something wrong. Could you help me?