Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
enable-cache: true

- name: Install dev dependencies
run: uv sync --extra dev
run: uv sync --dev

- name: Ruff (lint)
run: uv run ruff check .
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
enable-cache: true

- name: Install dev dependencies
run: uv sync --extra dev
run: uv sync --dev

- name: Contract tests with strict REPL coverage gate (100%)
run: uv run pytest -m contract --cov=context_compiler.repl --cov-report=term-missing --cov-fail-under=100
Expand All @@ -111,7 +111,7 @@ jobs:
enable-cache: true

- name: Install dev dependencies
run: uv sync --extra dev
run: uv sync --dev

- name: Contract tests with strict engine coverage gate (100%)
run: uv run pytest -m contract --cov=context_compiler.engine --cov-report=term-missing --cov-fail-under=100
Expand All @@ -132,7 +132,7 @@ jobs:
enable-cache: true

- name: Install dev dependencies
run: uv sync --extra dev
run: uv sync --dev

- name: Contract tests with strict grammar coverage gate (100%)
run: uv run pytest tests/test_grammar.py tests/test_grammar_api_contract_fixture.py tests/test_fixtures.py::test_grammar_fixtures --cov=context_compiler.grammar --cov-report=term-missing --cov-fail-under=100
2 changes: 1 addition & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
enable-cache: true

- name: Install dev and demos dependencies
run: uv sync --extra dev --extra demos
run: uv sync --dev --extra demos

- name: Run pytest stress loop
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stress-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
enable-cache: true

- name: Install dev and demos dependencies
run: uv sync --extra dev --extra demos
run: uv sync --dev --extra demos

- name: Run pytest stress loop
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Do not rewrite captured outputs, fixture-sensitive examples, or eval evidence un
Use the project's existing tooling:

- Run commands via `uv run` when appropriate.
- Development dependencies are installed with `uv sync --group dev`.
- Development dependencies are installed with `uv sync --dev`.

## Structured Regression Fixtures
- Deterministic engine behavior changes that affect `tests/fixtures/engine-regression/structured/` outputs must update the corresponding fixtures.
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Contributions are typically submitted via fork and pull request:
## Development Setup

```bash
uv sync --group dev
uv sync --dev
```

## Running Tests
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ Packaging notes:
### Development

```bash
uv sync --group dev
uv sync --dev
uv run pytest
```

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "context-compiler"
version = "0.9.0dev4"
version = "0.9.0dev5"
description = "Deterministic conversational state engine for LLM applications."
readme = "README.md"
requires-python = ">=3.11"
Expand Down Expand Up @@ -54,6 +54,7 @@ include = [
demos = [
"litellm>=1.0.0",
]
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
Expand Down
28 changes: 16 additions & 12 deletions uv.lock

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

Loading