Skip to content
Open
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
42 changes: 42 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ toml = "0.8"
chrono = "0.4"
thiserror = "1.0"
tempfile = "3"
flate2 = "1.0"

[dev-dependencies]

Expand Down
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ rtk pytest # Python tests (failures only, 90% reduction)
rtk pip list # Python packages (auto-detect uv, 70% reduction)
rtk go test # Go tests (NDJSON, 90% reduction)
rtk golangci-lint run # Go linting (JSON, 85% reduction)
rtk dotnet build # .NET build summary with binlog
rtk dotnet test # .NET failures only (auto TRX + fallback parsing)
rtk dotnet restore # .NET restore summary
```

### Data & Analytics
Expand Down Expand Up @@ -256,7 +259,7 @@ rtk prisma migrate dev --name x # Migration summary
rtk prisma db-push # Schema push summary
```

### Python & Go Stack
### Python, Go & .NET Stack
```bash
# Python
rtk ruff check # Ruff linter (JSON, 80% reduction)
Expand All @@ -271,8 +274,19 @@ rtk go test # NDJSON streaming parser (90% reduction)
rtk go build # Build errors only (80% reduction)
rtk go vet # Vet issues (75% reduction)
rtk golangci-lint run # JSON grouped by rule (85% reduction)

# .NET
rtk dotnet build # Build errors/warnings summary with binlog
rtk dotnet test # Failed tests only (auto TRX cleanup, TestResults fallback)
rtk dotnet restore # Restore project/package summary
```

Dotnet behavior notes:
- RTK forwards your dotnet args as-is (`--configuration`, `--framework`, `--project`, `--no-build`, `--no-restore`, `--filter`, etc.).
- RTK only injects defaults when missing (`-bl`, `-v:minimal`, `-nologo`) and does not override your explicit `-v` / `--logger`.
- For `rtk dotnet test`, RTK auto-generates a TRX file, parses it when binlog/console counts are unavailable, then cleans up that temp TRX file.
- If temp TRX is missing, RTK falls back to the newest `./TestResults/*.trx` file.

## Examples

### Standard vs rtk
Expand Down
Loading
Loading