Skip to content

Commit 8a0db27

Browse files
committed
Address PR feedback: fix test command and SQLite Docker note
- Change `dotnet test --no-build` to `dotnet test --no-restore` so tests build as needed on clean checkouts - Clarify that SQLite tests run in-process and don't require Docker, while only containerized providers need a Docker daemon https://claude.ai/code/session_0147Z5VzzZpX1pUfaAapNZie
1 parent d972059 commit 8a0db27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

claude.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Typed exception handling for Entity Framework Core. Converts database-specific e
77
```bash
88
dotnet restore # Restore NuGet dependencies
99
dotnet build --no-restore # Build all projects
10-
dotnet test --no-build # Run tests (requires Docker for Testcontainers)
10+
dotnet test --no-restore # Run tests (requires Docker for Testcontainers)
1111
```
1212

13-
Tests use **Testcontainers** and require a running Docker daemon. Each database provider (SQL Server, PostgreSQL, MySQL, Oracle, SQLite) spins up its own container.
13+
Tests use **Testcontainers** and require a running Docker daemon for containerized providers (SQL Server, PostgreSQL, MySQL, Oracle), each of which spins up its own container. **SQLite** tests run in-process and do not require Docker.
1414

1515
## Project Structure
1616

0 commit comments

Comments
 (0)