Closed asymmetric closed 6 years ago
Dependencies with <scope>test</scope> are skipped.
<scope>test</scope>
At the same time, build-maven.nix runs the package phase, which will run tests.
package
How does this work in practice? Is it currently working because no-one is using <scope>test</scope>?
I see what's going on: they are only skipped when it's time to add them as first class dependencies, and the reason is that test dependencies are not transitive.
Dependencies with
<scope>test</scope>
are skipped.At the same time, build-maven.nix runs the
package
phase, which will run tests.How does this work in practice? Is it currently working because no-one is using
<scope>test</scope>
?