Verified with the coordinated workspace changes by devkit full run 2026-09-08T225814-186389-0000-3e3ed7cd (all seven phases passed). This shared UI pass does not mark the individual module reviews complete.
33 lines
816 B
JSON
Executable File
33 lines
816 B
JSON
Executable File
{
|
|
"schema_version": 1,
|
|
"name": "Example Python project",
|
|
"repositories": [{"name": "app", "path": "."}],
|
|
"checks": [
|
|
{
|
|
"id": "whitespace",
|
|
"title": "Git whitespace check",
|
|
"argv": ["git", "diff", "--check"],
|
|
"cwd": ".",
|
|
"repos": ["app"],
|
|
"inputs": {"repos": ["app"]},
|
|
"timeout_seconds": 30
|
|
},
|
|
{
|
|
"id": "unit-tests",
|
|
"title": "Python unit tests",
|
|
"argv": ["{python}", "-m", "unittest", "discover", "-s", "tests"],
|
|
"cwd": ".",
|
|
"repos": ["app"],
|
|
"inputs": {"repos": ["app"]},
|
|
"after": ["whitespace"],
|
|
"resources": ["test-database"],
|
|
"timeout_seconds": 300
|
|
}
|
|
],
|
|
"profiles": {
|
|
"quick": ["whitespace", "unit-tests"],
|
|
"backend": ["unit-tests"],
|
|
"full": ["whitespace", "unit-tests"]
|
|
}
|
|
}
|