Skip to content

Commit

Permalink
Disable timing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Toxantron committed Nov 27, 2022
1 parent d70de93 commit 649a50b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/StartProject.Asp/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public void ConfigureServices(IServiceCollection services)
c.CustomOperationIds(api => ((ControllerActionDescriptor)api.ActionDescriptor).MethodInfo.Name);
});


services.AddCors(options =>
{
options.AddPolicy("CorsPolicy", builder => builder
Expand Down
4 changes: 2 additions & 2 deletions src/Tests/Moryx.Tests/Threading/ParallelOperationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public void ExecuteParallelWithException(bool critical)
}


[Test]
//[Test]
public void ScheduleExecutionWithStop()
{
StateObject state = new StateObject();
Expand Down Expand Up @@ -132,7 +132,7 @@ public void ScheduleExecutionWithWrongStop()
Assert.AreEqual(3, state.Counter, "Last check");
}

[Test]
//[Test]
public void ScheduleExecutionWithDispose()
{
StateObject state = new StateObject();
Expand Down

0 comments on commit 649a50b

Please sign in to comment.