v0.1.4 #9

Merged
pptx704 merged 51 commits from dev into main 2026-05-20 21:01:22 +00:00
42 changed files with 6170 additions and 1663 deletions
Showing only changes of commit db48e3cfbf - Show all commits

View File

@ -6,6 +6,8 @@ when:
include: include:
- "src/wrenn/code_runner/**" - "src/wrenn/code_runner/**"
- "tests/test_code_runner_*.py" - "tests/test_code_runner_*.py"
- "pyproject.toml"
- "uv.lock"
steps: steps:
test-code-runner: test-code-runner:

View File

@ -7,8 +7,12 @@ when:
path: path:
include: include:
- "src/**" - "src/**"
- "tests/**"
- "pyproject.toml"
- "uv.lock"
exclude: exclude:
- "src/wrenn/code_runner/**" - "src/wrenn/code_runner/**"
- "tests/test_code_runner_*.py"
steps: steps:
test-integration: test-integration:

View File

@ -33,7 +33,7 @@ test:
uv run pytest tests/test_client.py tests/test_code_runner_unit.py -v uv run pytest tests/test_client.py tests/test_code_runner_unit.py -v
test-integration: test-integration:
uv run pytest tests/ -v -m "integration or not integration" uv run pytest tests/ -v -m "integration or not integration" --ignore=tests/test_code_runner_e2e.py --ignore=tests/test_code_runner_unit.py
test-code-runner: test-code-runner:
uv run pytest tests/test_code_runner_unit.py tests/test_code_runner_e2e.py -v -m "integration or not integration" uv run pytest tests/test_code_runner_unit.py tests/test_code_runner_e2e.py -v -m "integration or not integration"