scct icon indicating copy to clipboard operation
scct copied to clipboard

Scala Code Coverage Tool

Results 39 scct issues
Sort by recently updated
recently updated
newest added

Updated Scala version of the project to 2.10.0. Also most of us here the sbt-extras launcher (https://github.com/paulp/sbt-extras/blob/master/sbt) which helps dealing with multiple Scala/SBT versions. The Scala jar finding magic did...

New system property provides a comma separated list of regex's for the paths to ignore in coverage. Files matching these patterns are excluded from the final coverage reports. ``` src/main/scala/.*Excluded.*/morepath,other/excluded/path/regex...

When we run tests for Scala 2.9.3, it fails because `scct_2.9.3` has not been deployed. ``` [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: UNRESOLVED DEPENDENCIES :: [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: reaktor#scct_2.9.3;0.2-SNAPSHOT: not found...

In a Play application, scct:run reports there's no main class defined. In ScctPlugin.scala, only compile and test are inConfig'ed inConfig(Scct)(Defaults.compileSettings) ++ inConfig(ScctTest)(Defaults.testSettings) ++ We might need inConfig(ScctRun)(Defaults.runTask) to support running...

Hi, scct is a great work. It's pretty useful. But I would like to ask you an important favor. By default, "reaktor" %% "scct" is in Compile implicitly. But library...

Hi, I'm using Scala 2.10.2, SBT 0.13.0 and sbt-scct 0.2-SNAPSHOT. `scct:test` puts the `coverage.data` file into the project root directory, but doesn't read it back from there again: ``` java.lang.NullPointerException...

It does not find resources under src/test.

I'd normally submit a patch but can't do so easily from where I am right now, so for now I'll just report the bug. In https://github.com/mtkopone/scct/blob/master/src/main/scala/reaktor/scct/ScctInstrumentPlugin.scala#L238, you call .source on...

I recently split a scala project up into multiple modules, and found that scct no longer determines the source path correctly. Running `mvn -Pcoverage clean test` causes this exception: ```...