Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .github/workflows/nightly-deep-assurance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
python-version: "3.12"
cache: "pip"
- run: python -m pip install -e '.[dev,quality]' mutmut
- run: python -m mutmut run --paths-to-mutate codewiki/src/enduser
- run: mutmut run

api_fuzz_and_contracts:
name: api_fuzz_and_contracts
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: aquasecurity/trivy-action@0.30.0
- uses: aquasecurity/trivy-action@v0.36.0
with:
scan-type: fs
scan-ref: .
Expand Down
13 changes: 9 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
dependencies = [
"click>=8.1.0",
"keyring>=24.0.0",
"GitPython>=3.1.41",
"GitPython>=3.1.50",
"Jinja2>=3.1.6",
"tree-sitter>=0.23.2",
"tree-sitter-language-pack>=0.8.0",
Expand All @@ -43,13 +43,13 @@ dependencies = [
"markdown-it-py>=3.0.0",
"mcp>=1.23.0",
"openai>=2.30.0",
"litellm>=1.83.0",
"litellm>=1.83.10",
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"pydantic-ai>=1.56.0",
"requests>=2.33.0",
"tiktoken>=0.8.0",
"python-dotenv>=1.1.1",
"python-dotenv>=1.2.2",
"rich>=14.1.0",
"networkx>=3.5",
"psutil>=7.0.0",
Expand All @@ -58,7 +58,7 @@ dependencies = [
"mermaid-py>=0.8.0",
"fastapi>=0.135.2",
"uvicorn>=0.35.0",
"python-multipart>=0.0.22",
"python-multipart>=0.0.27",
"colorama>=0.4.6",
"logfire>=4.1.0"
]
Expand Down Expand Up @@ -136,6 +136,11 @@ disallow_untyped_defs = false
disallow_incomplete_defs = false
files = ["codewiki/src/enduser", "codewiki/cli/commands/enduser.py"]

[tool.mutmut]
paths_to_mutate = ["codewiki/src/enduser"]
pytest_add_cli_args_test_selection = ["tests"]
also_copy = ["codewiki"]

[tool.ruff]
line-length = 100
target-version = "py312"
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# `[project.dependencies]` in `pyproject.toml`.
click>=8.1.0
keyring>=24.0.0
GitPython>=3.1.41
GitPython>=3.1.50
Jinja2>=3.1.6
tree-sitter>=0.23.2
tree-sitter-language-pack>=0.8.0
Expand All @@ -20,13 +20,13 @@ anthropic>=0.52.0
markdown-it-py>=3.0.0
mcp>=1.23.0
openai>=2.30.0
litellm>=1.83.0
litellm>=1.83.10
pydantic>=2.11.7
pydantic-settings>=2.10.1
pydantic-ai>=1.56.0
requests>=2.33.0
tiktoken>=0.8.0
python-dotenv>=1.1.1
python-dotenv>=1.2.2
rich>=14.1.0
networkx>=3.5
psutil>=7.0.0
Expand All @@ -35,6 +35,6 @@ mermaid-parser-py>=0.0.2
mermaid-py>=0.8.0
fastapi>=0.135.2
uvicorn>=0.35.0
python-multipart>=0.0.22
python-multipart>=0.0.27
colorama>=0.4.6
logfire>=4.1.0
Loading