Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

namespace McMaster.Extensions.CommandLineUtils.Tests
{
// Uses shared static CommandMetadataRegistry - must not run in parallel with other registry tests
[Collection("MetadataRegistry")]
public class RemainingArgsPropertyConventionTests : ConventionTestBase
{
public RemainingArgsPropertyConventionTests(ITestOutputHelper output) : base(output)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

namespace McMaster.Extensions.CommandLineUtils.Tests.SourceGeneration
{
// Uses shared static CommandMetadataRegistry - must not run in parallel with other registry tests
[Collection("MetadataRegistry")]
public class CommandMetadataRegistryTests
{
[Command(Name = "test1")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ namespace McMaster.Extensions.CommandLineUtils.Tests.SourceGeneration
/// Tests for the AOT-friendly code paths in conventions.
/// These tests exercise the generated metadata paths in conventions.
/// </summary>
// Uses shared static CommandMetadataRegistry - must not run in parallel with other registry tests
[Collection("MetadataRegistry")]
public class ConventionAotPathTests : IDisposable
{
public ConventionAotPathTests()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

namespace McMaster.Extensions.CommandLineUtils.Tests.SourceGeneration
{
// Uses shared static CommandMetadataRegistry - must not run in parallel with other registry tests
[Collection("MetadataRegistry")]
public class MetadataProviderTests
{
[Command(Name = "test", Description = "A test command")]
Expand Down
Loading