Skip to content

Commit

Permalink
Mark more tests as integration, beacuse they use Postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
myieye committed Dec 10, 2024
1 parent ce28810 commit 1d68d36
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions backend/Testing/Fixtures/Tests/ServicesFixtureTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Testing.Fixtures.Tests;

[Trait("Category", "Integration")]
public class ServicesFixtureTests
{
[Fact]
Expand Down
1 change: 1 addition & 0 deletions backend/Testing/LexCore/CrdtServerCommitTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
namespace Testing.LexCore;

[Collection(nameof(TestingServicesFixture))]
[Trait("Category", "Integration")]
public class CrdtServerCommitTests
{
private readonly LexBoxDbContext _dbContext;
Expand Down
1 change: 1 addition & 0 deletions backend/Testing/LexCore/Services/ProjectServiceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
namespace Testing.LexCore.Services;

[Collection(nameof(TestingServicesFixture))]
[Trait("Category", "Integration")]
public class ProjectServiceTest
{
private readonly ProjectService _projectService;
Expand Down
1 change: 1 addition & 0 deletions backend/Testing/LexCore/Services/UserServiceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
namespace Testing.LexCore.Services;

[Collection(nameof(TestingServicesFixture))]
[Trait("Category", "Integration")]
public class UserServiceTest : IAsyncLifetime
{
private readonly UserService _userService;
Expand Down

0 comments on commit 1d68d36

Please sign in to comment.