Skip to content
Merged
2 changes: 1 addition & 1 deletion .github/workflows/opencode-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2248,7 +2248,7 @@ jobs:
&& steps.opencode_review_fallback.outputs.review_status != 'success'
&& steps.opencode_review_second_fallback.outputs.review_status != 'success'
continue-on-error: true
timeout-minutes: 20
timeout-minutes: 60
env:
STRIX_GITHUB_MODELS_TOKEN: ${{ secrets.STRIX_GITHUB_MODELS_TOKEN || github.token }}
GITHUB_TOKEN: ${{ secrets.STRIX_GITHUB_MODELS_TOKEN || github.token }}
Expand Down
16 changes: 16 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
[project]
name = "opencode-review-ci"
version = "0.0.1"
requires-python = ">=3.10"
dependencies = []

[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"interrogate>=1.7.0"
]

[tool.pytest.ini_options]
pythonpath = ["."]

[tool.coverage.run]
source = ["scripts/ci"]
omit = ["tests/*"]
Expand Down