Skip to content

Commit eb3a031

Browse files
authored
readme and claude.md sync. (langgenius#24495)
1 parent 243876e commit eb3a031

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

api/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,14 @@ uv run celery -A app.celery beat
9999

100100
1. Run the tests locally with mocked system environment variables in `tool.pytest_env` section in `pyproject.toml`, more can check [Claude.md](../CLAUDE.md)
101101

102-
```cli
103-
uv run --project api pytest # Run all tests
104-
uv run --project api pytest tests/unit_tests/ # Unit tests only
105-
uv run --project api pytest tests/integration_tests/ # Integration tests
102+
```bash
103+
uv run pytest # Run all tests
104+
uv run pytest tests/unit_tests/ # Unit tests only
105+
uv run pytest tests/integration_tests/ # Integration tests
106106

107107
# Code quality
108-
./dev/reformat # Run all formatters and linters
109-
uv run --project api ruff check --fix ./ # Fix linting issues
110-
uv run --project api ruff format ./ # Format code
111-
uv run --project api mypy . # Type checking
108+
../dev/reformat # Run all formatters and linters
109+
uv run ruff check --fix ./ # Fix linting issues
110+
uv run ruff format ./ # Format code
111+
uv run mypy . # Type checking
112112
```

dev/start-worker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ cd "$SCRIPT_DIR/.."
88

99
uv --directory api run \
1010
celery -A app.celery worker \
11-
-P gevent -c 1 --loglevel INFO -Q dataset,generation,mail,ops_trace,app_deletion,plugin,workflow_storage
11+
-P gevent -c 1 --loglevel INFO -Q dataset,generation,mail,ops_trace,app_deletion,plugin,workflow_storage,conversation

0 commit comments

Comments
 (0)