Skip to content

Commit 2ae9210

Browse files
OG-Drizzlesclaude
andcommitted
feat: pre-public cleanup — remove compat shim, add CI, update README
- Remove index.py compat shim: all 10 test files migrated to direct db.py calls via conftest.seed_board() helper. test_indexes.py deleted. - Gitignore .claude/, docs/, CLAUDE.md (local-only files) - Remove tracked .claude/skills/, CLAUDE.md, docs/ from git - Add GitHub Actions CI: pytest across Python 3.10-3.13 + ruff lint - README: update storage references (file-based → SQLite), add board/ stale/batch commands, update file layout, remove stale limitations, remove references to gitignored files - pyproject.toml: add authors field - Fix version test to accept 0.3.x 233 tests pass. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8793a0b commit 2ae9210

20 files changed

Lines changed: 110 additions & 946 deletions

.claude/skills/trache/SKILL.md

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

.github/workflows/test.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
python-version: ["3.10", "3.11", "3.12", "3.13"]
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Set up Python ${{ matrix.python-version }}
20+
uses: actions/setup-python@v5
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
24+
- name: Install dependencies
25+
run: pip install -e ".[dev]"
26+
27+
- name: Run tests
28+
run: python -m pytest tests/ -v
29+
30+
- name: Run lint
31+
run: ruff check src/ tests/

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ venv/
1717
.ruff_cache/
1818
htmlcov/
1919
.coverage
20+
.claude/
21+
docs/
22+
CLAUDE.md

CLAUDE.md

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

0 commit comments

Comments
 (0)