Skip to content

Commit 0314293

Browse files
cleanup leftovers
1 parent c33988b commit 0314293

File tree

5 files changed

+4
-39
lines changed

5 files changed

+4
-39
lines changed

CLAUDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
1313
Both the main repo and individual tutorials use `uv` for consistency.
1414

1515
#### Testing
16-
- Run tests: `uv run pytest` or `./scripts/test`
16+
- Run tests: `uv run task test` (with mock server) or `uv run pytest` (direct)
1717
- Run specific test: `uv run pytest path/to/test_file.py::TestClass::test_method -v`
1818
- Mock server is automatically started for tests, runs on port 4010
1919

2020
#### Linting and Formatting
21-
- Format code: `uv run task format` or `./scripts/format`
21+
- Format code: `uv run task format`
2222
* The repository is still in flux, so running format might accidentally change files that aren't part of your scope of changes. So always run `uv run task format` with additional arguments to constrain the formatting to the files that you are modifying.
23-
- Lint code: `uv run task lint` or `./scripts/lint`
23+
- Lint code: `uv run task lint`
2424
- Type check: `uv run task typecheck` (runs both pyright and mypy)
2525

2626
### Building and Running

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,11 @@ lint = { cmd = "task check-ruff", help = "Run all linting checks" }
120120
post_lint = "task typecheck && task check-importable"
121121

122122
# === SCRIPT DELEGATION (complex operations) ===
123-
bootstrap = { cmd = "./scripts/bootstrap", help = "Set up development environment" }
124123
test = { cmd = "./scripts/test", help = "Run tests with mock server" }
125124
mock = { cmd = "./scripts/mock", help = "Start mock API server" }
126125

127126
# === DEVELOPMENT SETUP ===
127+
bootstrap = { cmd = "uv sync --all-extras --group dev", help = "Set up development environment" }
128128
setup-pre-commit = { cmd = "pre-commit install", help = "Install pre-commit hooks" }
129129

130130
# === CI-SPECIFIC TASKS ===

scripts/bootstrap

Lines changed: 0 additions & 16 deletions
This file was deleted.

scripts/format

Lines changed: 0 additions & 8 deletions
This file was deleted.

scripts/lint

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)