Skip to content

Commit

Permalink
Added AcceptanceTestPath to the exception message.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hovsep Mkrtchyan committed May 20, 2016
1 parent 79a1c2c commit 9c26eea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ public void StartServiceProcess()
else
{
throw new InvalidOperationException(string.Format(CultureInfo.CurrentCulture,
"Failed to start {0} {1} .",
npmPath, NpmArgument));
"Failed to start {0} {1} '{2}'.",
npmPath, NpmArgument, AcceptanceTestsPath));
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ var xunitNetCoreXproj = [
var defaultShellOptions = {
verbosity: 3,
env: {
AUTOREST_TEST_SERVER_PATH: path.resolve('AutoRest/TestServer')
AUTOREST_TEST_SERVER_PATH: path.resolve('./AutoRest/TestServer')
}
};

Expand Down Expand Up @@ -657,6 +657,7 @@ gulp.task('test', function(cb){
runSequence(
'test:xunit',
'test:clientruntime',
'test:nugetPackages',
'test:node',
'test:node:azure',
'test:ruby',
Expand All @@ -665,7 +666,6 @@ gulp.task('test', function(cb){
'test:java:azure',
'test:python',
'test:python:azure',
'test:nugetPackages',
cb);
} else {
runSequence(
Expand Down

0 comments on commit 9c26eea

Please sign in to comment.