Skip to content

Commit 68c786d

Browse files
committed
Trying to fix CI test runs
1 parent 926a41b commit 68c786d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

runappveyortests.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ $exitCode = CheckExitCode "Node tests" $exitCode
2323
& $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"
2424
$exitCode = CheckExitCode "Non-E2E tests" $exitCode
2525

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+
2629
& $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"
2730
$exitCode = CheckExitCode "CSharpEndToEndTests tests" $exitCode
2831

test/WebJobs.Script.Tests.Integration/EndToEndTimeoutTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818

1919
namespace Microsoft.Azure.WebJobs.Script.Tests
2020
{
21+
[Trait("Category", "E2E")]
22+
[Trait("E2E", nameof(EndToEndTimeoutTests))]
2123
public class EndToEndTimeoutTests
2224
{
2325
private static readonly ScriptSettingsManager SettingsManager = ScriptSettingsManager.Instance;

0 commit comments

Comments
 (0)