Skip to content

Commit f1ba573

Browse files
committed
Removing E2E Trait attributes
1 parent 36b9188 commit f1ba573

File tree

7 files changed

+2
-17
lines changed

7 files changed

+2
-17
lines changed

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ namespace Microsoft.Azure.WebJobs.Script.Tests
2020
public class BlobLeaseManagerTests
2121
{
2222
[Fact]
23-
[Trait("Category", "E2E")]
2423
public async Task HasLease_WhenLeaseIsAcquired_ReturnsTrue()
2524
{
2625
string connectionString = AmbientConnectionStringProvider.Instance.GetConnectionString(ConnectionStringNames.Storage);
@@ -39,7 +38,6 @@ public async Task HasLease_WhenLeaseIsAcquired_ReturnsTrue()
3938
}
4039

4140
[Fact]
42-
[Trait("Category", "E2E")]
4341
public async Task HasLeaseChanged_WhenLeaseIsAcquiredAndStateChanges_IsFired()
4442
{
4543
string hostId = Guid.NewGuid().ToString();
@@ -78,7 +76,6 @@ public async Task HasLeaseChanged_WhenLeaseIsAcquiredAndStateChanges_IsFired()
7876
}
7977

8078
[Fact]
81-
[Trait("Category", "E2E")]
8279
public async Task HasLeaseChanged_WhenLeaseIsLostAndStateChanges_IsFired()
8380
{
8481
string hostId = Guid.NewGuid().ToString();
@@ -153,7 +150,6 @@ public void AcquiringLease_WithServerError_LogsAndRetries()
153150
}
154151

155152
[Fact]
156-
[Trait("Category", "E2E")]
157153
public async Task Renew_WhenBlobIsDeleted_RecreatesBlob()
158154
{
159155
string hostId = Guid.NewGuid().ToString();
@@ -193,7 +189,6 @@ public async Task Renew_WhenBlobIsDeleted_RecreatesBlob()
193189
}
194190

195191
[Fact]
196-
[Trait("Category", "E2E")]
197192
public async Task Dispose_ReleasesBlobLease()
198193
{
199194
string hostId = Guid.NewGuid().ToString();
@@ -285,7 +280,6 @@ public async Task TraceOutputsMessagesWhenLeaseRenewalFails()
285280
}
286281

287282
[Fact]
288-
[Trait("Category", "E2E")]
289283
public async Task DifferentHosts_UsingSameStorageAccount_CanObtainLease()
290284
{
291285
string hostId1 = Guid.NewGuid().ToString();

test/WebJobs.Script.Tests.Integration/Controllers/Keys/DeleteFunctionKeyScenario.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the MIT License. See License.txt in the project root for license information.
33

4-
using System.Collections.Generic;
5-
using System.Linq;
64
using System.Net.Http;
7-
using Microsoft.Azure.WebJobs.Script.WebHost;
85
using Microsoft.Azure.WebJobs.Script.WebHost.Filters;
9-
using Microsoft.Azure.WebJobs.Script.WebHost.Models;
106
using Moq;
117
using Xunit;
128

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
namespace Microsoft.Azure.WebJobs.Script.Tests
2525
{
26-
[Trait("Category", "E2E")]
2726
public abstract class EndToEndTestsBase<TTestFixture> :
2827
IClassFixture<TTestFixture> where TTestFixture : EndToEndTestFixture, new()
2928
{

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
namespace Microsoft.Azure.WebJobs.Script.Tests
1818
{
19-
[Trait("Category", "E2E")]
2019
public class EndToEndTimeoutTests
2120
{
2221
private static readonly ScriptSettingsManager SettingsManager = ScriptSettingsManager.Instance;

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
namespace Microsoft.Azure.WebJobs.Script.Tests
2222
{
23-
[Trait("Category", "E2E")]
2423
public class FunctionGeneratorTests
2524
{
2625
private static readonly ScriptSettingsManager SettingsManager = ScriptSettingsManager.Instance;
@@ -83,13 +82,13 @@ public async Task Generate_EndToEnd()
8382
}
8483

8584
[Fact]
86-
internal async Task GeneratedMethods_WithOutParams_DoNotCauseDeadlocks_CSharp()
85+
public async Task GeneratedMethods_WithOutParams_DoNotCauseDeadlocks_CSharp()
8786
{
8887
await GeneratedMethods_WithOutParams_DoNotCauseDeadlocks("csharp");
8988
}
9089

9190
[Fact]
92-
internal async Task GeneratedMethods_WithOutParams_DoNotCauseDeadlocks_FSharp()
91+
public async Task GeneratedMethods_WithOutParams_DoNotCauseDeadlocks_FSharp()
9392
{
9493
await GeneratedMethods_WithOutParams_DoNotCauseDeadlocks("fsharp");
9594
}

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030

3131
namespace Microsoft.Azure.WebJobs.Script.Tests
3232
{
33-
[Trait("Category", "E2E")]
3433
public class SamplesEndToEndTests : IClassFixture<SamplesEndToEndTests.TestFixture>
3534
{
3635
private readonly ScriptSettingsManager _settingsManager;

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
namespace Microsoft.Azure.WebJobs.Script.Tests
1919
{
20-
[Trait("Category", "E2E")]
2120
public class ScriptHostManagerTests
2221
{
2322
private readonly ScriptSettingsManager _settingsManager;

0 commit comments

Comments
 (0)