mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
adding support for running integration tests using packaged build.
This commit is contained in:
parent
dc1895ee48
commit
eab6c3a4b5
21 changed files with 206 additions and 94 deletions
|
@ -96,7 +96,10 @@ namespace NzbDrone.Common
|
|||
|
||||
logger.Info("Starting {0} {1}", path, args);
|
||||
|
||||
var process = Process.Start(startInfo);
|
||||
var process = new Process
|
||||
{
|
||||
StartInfo = startInfo
|
||||
};
|
||||
|
||||
process.OutputDataReceived += (sender, eventArgs) =>
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue