File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
test/WebJobs.Script.Tests.Integration 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=EndToEndTimeoutTests"
27
+ $exitCode = CheckExitCode " EndToEndTimeoutTests 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=CSharpEndToEndTests"
27
30
$exitCode = CheckExitCode " CSharpEndToEndTests tests" $exitCode
28
31
Original file line number Diff line number Diff line change 18
18
19
19
namespace Microsoft . Azure . WebJobs . Script . Tests
20
20
{
21
+ [ Trait ( "Category" , "E2E" ) ]
22
+ [ Trait ( "E2E" , nameof ( EndToEndTimeoutTests ) ) ]
21
23
public class EndToEndTimeoutTests
22
24
{
23
25
private static readonly ScriptSettingsManager SettingsManager = ScriptSettingsManager . Instance ;
You can’t perform that action at this time.
0 commit comments