fix CI more
Some checks failed
Security Scan / dependency-check (pull_request) Successful in 42s
Security Scan / security (pull_request) Successful in 47s
Test Suite / lint (pull_request) Successful in 31s
Test Suite / test (3.11) (pull_request) Successful in 1m30s
Test Suite / build (pull_request) Failing after 36s
Some checks failed
Security Scan / dependency-check (pull_request) Successful in 42s
Security Scan / security (pull_request) Successful in 47s
Test Suite / lint (pull_request) Successful in 31s
Test Suite / test (3.11) (pull_request) Successful in 1m30s
Test Suite / build (pull_request) Failing after 36s
This commit is contained in:
19
CLAUDE.md
19
CLAUDE.md
@@ -30,9 +30,28 @@ The app will be available at http://127.0.0.1:8050
|
||||
**Run tests:**
|
||||
|
||||
```bash
|
||||
uv sync --extra test
|
||||
uv run pytest tests/ -v
|
||||
```
|
||||
|
||||
**Development tools:**
|
||||
|
||||
```bash
|
||||
# Install all dev dependencies
|
||||
uv sync --extra dev
|
||||
|
||||
# Linting and formatting
|
||||
uv run ruff check src/ tests/
|
||||
uv run ruff format src/ tests/
|
||||
|
||||
# Type checking
|
||||
uv run mypy src/embeddingbuddy/
|
||||
|
||||
# Security scanning
|
||||
uv run bandit -r src/
|
||||
uv run safety check
|
||||
```
|
||||
|
||||
**Test with sample data:**
|
||||
Use the included `sample_data.ndjson` and `sample_prompts.ndjson` files for testing the application functionality.
|
||||
|
||||
|
Reference in New Issue
Block a user