Closed
Description
These lines mean that the default action for sbt scoverage:test
is now to run the integration tests, rather than the more conventional unit tests:
// copy the test task into compile so we can do scoverage:test instead of scoverage-test:test etc
test in ScoverageCompile <<= (test in ScoverageTest),
test in ScoverageCompile <<= (test in ScoverageITest)
It should be more like:
// copy the test task into compile so we can do scoverage:test instead of scoverage-test:test etc
test in ScoverageCompile <<= (test in ScoverageTest)
(I can't seem to submit a PR -- github thinks my repos isn't a fork of this. Strange.)
Metadata
Metadata
Assignees
Labels
No labels