diff --git a/.claude/mission.md b/.claude/mission.md index c9653e3..5ea6beb 100644 --- a/.claude/mission.md +++ b/.claude/mission.md @@ -8,5 +8,4 @@ Caching library with MongoDB backend support, cache partitioning, and a Blazor m - **Shared instructions**: `$DOC_ROOT/Tharga/shared-instructions.md` - **Plan directory**: `$DOC_ROOT/Tharga/plans/Toolkit/Cache` - **Backlog**: `$DOC_ROOT/Tharga/Toolkit/Cache.md` -- **Incoming requests**: `c:\Users\danie\SynologyDrive\Documents\Notes\Tharga\Requests.md` — check for pending requests for this project on startup -- **Eplicta requests**: `$DEV_ROOT/Eplicta/plan/requests.md` — check for requests from Eplicta on startup +- **Incoming requests**: `$DOC_ROOT/Tharga/Requests.md` — check for pending requests for this project on startup diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6f61ee9..e2e8e08 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ on: branches: [master] env: - MAJOR_MINOR: '1.0' + MAJOR_MINOR: '1.1' permissions: contents: write @@ -105,8 +105,6 @@ jobs: - name: Test with coverage # Skip Integration (needs Mongo/Redis) and TimeCritical (wall-clock asserts) tests on shared CI runners. - # Microsoft.Testing.Platform (see global.json) — xunit.v3 4.x dropped the VSTest bridge, so the - # VSTest --filter expression and --collect:"XPlat Code Coverage" no longer apply here. run: dotnet test -c Release --no-build --filter-not-trait "Category=Integration" --filter-not-trait "Category=TimeCritical" --coverage --coverage-output-format cobertura --results-directory ./coverage - name: Upload coverage to Codecov diff --git a/Tharga.Cache.Tests/AddCacheConcurrencyTests.cs b/Tharga.Cache.Tests/AddCacheConcurrencyTests.cs index 617626c..b8036cc 100644 --- a/Tharga.Cache.Tests/AddCacheConcurrencyTests.cs +++ b/Tharga.Cache.Tests/AddCacheConcurrencyTests.cs @@ -12,8 +12,7 @@ public class AddCacheConcurrencyTests private sealed record Marker; - // Nesting a generic in itself yields as many distinct cache types as needed without - // declaring one class per host. + // Nesting Marker in itself yields N distinct cache types without N declared classes. private static Type MarkerType(int depth) { var type = typeof(object);