Skip to content

Commit c8ee12e

Browse files
russcamAnush008
andauthored
Reuse collection fixture (#80)
* Bump dependencies Enable built-in .NET analyzers on .NET Framework. see https://github.com/dotnet/roslyn-analyzers?tab=readme-ov-file#microsoftcodeanalysisnetanalyzers * Bump build TargetFramework * Reuse collection fixture This commit updates the health check test to avoid creating a separate test fixture, and reuses the collection fixture. A separate test fixture creates a separate qdrant docker test container, which is not needed for this test. --------- Co-authored-by: Anush <[email protected]>
1 parent 086a521 commit c8ee12e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/Qdrant.Client.Tests/HealthCheckTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
namespace Qdrant.Client
66
{
7-
public class HealthCheckTests : IClassFixture<QdrantFixture>
7+
[Collection("Qdrant")]
8+
public class HealthCheckTests
89
{
910
private readonly QdrantClient _client;
1011

0 commit comments

Comments
 (0)