You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The integration test currently attempts to publishLocal relying on these lines. However this won't publish the compiler plugin for 2.10, owing to sbt's design regarding cross version operation. The integration test may show all tests as failed due to not being able to resolve the plugin for 2.10 projects, or use an older copy of the plugin for 2.10! It is unclear whether sbt can facilitate this flow, and this is kept on hold to avoid at present further sbt work.
Workaround:
Always +publishLocal before running integrationTest.
Consider requesting an enhancement to sbt-doge for this scenario, if not core sbt, or just switch from a task to a command that mimics ;+publishLocal ;integrationTest. Posted on stack overflow to open up future possibilities.
The text was updated successfully, but these errors were encountered:
The integration test currently attempts to
publishLocal
relying on these lines. However this won't publish the compiler plugin for 2.10, owing to sbt's design regarding cross version operation. The integration test may show all tests as failed due to not being able to resolve the plugin for 2.10 projects, or use an older copy of the plugin for 2.10! It is unclear whether sbt can facilitate this flow, and this is kept on hold to avoid at present further sbt work.Workaround:
Always +publishLocal before running
integrationTest
.Consider requesting an enhancement to sbt-doge for this scenario, if not core sbt, or just switch from a task to a command that mimics
;+publishLocal ;integrationTest
. Posted on stack overflow to open up future possibilities.The text was updated successfully, but these errors were encountered: