Instead of using IClassFixture<T>
you should use ICollectionFixture
which allows you to create a single test context and share it among tests in several test classes. You can find an example of the usage here Collection Fixtures. Hope it helps🤞🥲.