Skip to content

Commit

Permalink
Merge branch 'develop' into bug-1681
Browse files Browse the repository at this point in the history
  • Loading branch information
raman-m authored Sep 25, 2023
2 parents 92cabfe + 8b89257 commit 2c163a5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/Ocelot.AcceptanceTests/ConfigurationReloadTests.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using Ocelot.Configuration.ChangeTracking;
using Ocelot.Configuration.ChangeTracking;
using Ocelot.Configuration.File;

namespace Ocelot.AcceptanceTests
{
[Collection(nameof(SequentialTests))]
public sealed class ConfigurationReloadTests : IDisposable
{
private readonly FileConfiguration _initialConfig;
Expand Down
11 changes: 11 additions & 0 deletions test/Ocelot.AcceptanceTests/SequentialTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
using Xunit;

namespace Ocelot.AcceptanceTests;

/// <summary>
/// Apply <see cref="CollectionAttribute"/> to classes to disable parallelization.
/// </summary>
[CollectionDefinition(nameof(SequentialTests), DisableParallelization = true)]
public class SequentialTests
{
}

0 comments on commit 2c163a5

Please sign in to comment.