Skip to content

sbt scoverage:test no longer runs the unit tests #30

Closed
@RichardBradley

Description

@RichardBradley

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions