Skip to content

Commit e0ad27a

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

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=ScriptHostManagerTests"
27+
$exitCode = CheckExitCode "ScriptHostManagerTests 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=EndToEndTimeoutTests"
2730
$exitCode = CheckExitCode "EndToEndTimeoutTests tests" $exitCode
2831

test/WebJobs.Script.Tests.Integration/Host/ScriptHostManagerTests.cs

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

2626
namespace Microsoft.Azure.WebJobs.Script.Tests
2727
{
28+
[Trait("Category", "E2E")]
29+
[Trait("E2E", nameof(ScriptHostManagerTests))]
2830
public class ScriptHostManagerTests
2931
{
3032
private readonly ScriptSettingsManager _settingsManager;

0 commit comments

Comments
 (0)