playframework - Play Framework Scala: Run "test" before "run" in the triggered execution mode -
everytime change code in project run 2 separate sbt actions in order:
- test
- run
i thought possible activator/sbt commands ~ ; test ; run
, sticks "run" , don't testing until break sequence ctrl-d.
is possible run "test" action before "run" in triggered execution mode?
because of nature of run
won't re-run test
on code change. perhaps might work have 2 sbt shells open, 1 ~test
, 1 ~run
.
a note of warning though, multiple sbt shells, in trigger execution, can trip on because there's limited locking on relevant files - 1 of things sbt server hopes solve.
Comments
Post a Comment