File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
test/WebJobs.Script.Tests.Integration/Host Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ $exitCode = CheckExitCode "Node tests" $exitCode
23
23
& $env: APPVEYOR_BUILD_FOLDER \packages\xunit.runner.console.2.3 .0 \tools\net452\xunit.console.x86.exe " $env: APPVEYOR_BUILD_FOLDER \test\WebJobs.Script.Tests.Integration\bin\Release\Microsoft.Azure.WebJobs.Script.Tests.Integration.dll" - notrait " Category=E2E"
24
24
$exitCode = CheckExitCode " Non-E2E tests" $exitCode
25
25
26
+ & $env: APPVEYOR_BUILD_FOLDER \packages\xunit.runner.console.2.3 .0 \tools\net452\xunit.console.x86.exe " $env: APPVEYOR_BUILD_FOLDER \test\WebJobs.Script.Tests.Integration\bin\Release\Microsoft.Azure.WebJobs.Script.Tests.Integration.dll" - trait " E2E=ScriptHostManagerTests"
27
+ $exitCode = CheckExitCode " ScriptHostManagerTests tests" $exitCode
28
+
26
29
& $env: APPVEYOR_BUILD_FOLDER \packages\xunit.runner.console.2.3 .0 \tools\net452\xunit.console.x86.exe " $env: APPVEYOR_BUILD_FOLDER \test\WebJobs.Script.Tests.Integration\bin\Release\Microsoft.Azure.WebJobs.Script.Tests.Integration.dll" - trait " E2E=EndToEndTimeoutTests"
27
30
$exitCode = CheckExitCode " EndToEndTimeoutTests tests" $exitCode
28
31
Original file line number Diff line number Diff line change 25
25
26
26
namespace Microsoft . Azure . WebJobs . Script . Tests
27
27
{
28
+ [ Trait ( "Category" , "E2E" ) ]
29
+ [ Trait ( "E2E" , nameof ( ScriptHostManagerTests ) ) ]
28
30
public class ScriptHostManagerTests
29
31
{
30
32
private readonly ScriptSettingsManager _settingsManager ;
You can’t perform that action at this time.
0 commit comments