I am start my server in the pipeline script before running my tests. sbt run runs and initializes fine, but right after "ready" message it exists as if someone pressed Ctrl-D.
Part of the log:
sbt -Dhttps.port=8001 -Dhttp.port=disabled run
...
[info] CoffeeScript compiling on 2 source(s)
[info] ReactJS compiling on 63 source(s)
[info] p.c.s.NettyServer - Listening for HTTPS on /0:0:0:0:0:0:0:0:8001
(Server started, use Ctrl+D to stop and go back to the console...)
[info] p.c.s.NettyServer - Stopping server...
[success] Total time: 160 s, completed Oct 11, 2017 3:26:49 AM
How do I keep the application running so that I can run my tests following this? Does pipeline support running server like this (say with & at the end a