Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .claude/mission.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [master]

env:
MAJOR_MINOR: '1.0'
MAJOR_MINOR: '1.1'

permissions:
contents: write
Expand Down Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions Tharga.Cache.Tests/AddCacheConcurrencyTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ public class AddCacheConcurrencyTests

private sealed record Marker<T>;

// 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);
Expand Down
Loading