We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
+test
I have the following release process for my project that cross-compiles in 2.12.10 and 2.13.1
releaseProcess := Seq[ReleaseStep]( checkSnapshotDependencies, inquireVersions, runClean, releaseStepCommandAndRemaining("+test"), setReleaseVersion, commitReleaseVersion, tagRelease, releaseStepCommandAndRemaining("+publish"), setNextVersion, commitNextVersion, pushChanges )
I would like to be able to run sbt release skip-tests, but the tests are still running.
sbt release skip-tests
The text was updated successfully, but these errors were encountered:
the solution I'm using is using this instead:
lazy val crossRunTest: ReleaseStep = ReleaseStep( action = { st: State => if (!st.get(skipTests).getOrElse(false)) { releaseStepCommandAndRemaining("+test")(st) } else st }, enableCrossBuild = true )
I will make a PR to add
Sorry, something went wrong.
No branches or pull requests
I have the following release process for my project that cross-compiles in 2.12.10 and 2.13.1
I would like to be able to run
sbt release skip-tests
, but the tests are still running.The text was updated successfully, but these errors were encountered: