0397a00eb6
CI / lint (pull_request) Successful in 24s
CI / security (pull_request) Successful in 48s
CI / quality (pull_request) Successful in 30s
CI / benchmark-publish (pull_request) Has been skipped
CI / typecheck (pull_request) Successful in 1m8s
CI / build (pull_request) Successful in 26s
CI / integration_tests (pull_request) Successful in 5m6s
CI / unit_tests (pull_request) Successful in 22m40s
CI / docker (pull_request) Successful in 15s
CI / benchmark-regression (pull_request) Successful in 23m12s
CI / coverage (pull_request) Successful in 31m33s
26 lines
946 B
JSON
26 lines
946 B
JSON
{
|
|
"fixtures": [
|
|
{
|
|
"name": "minimal_git_repo",
|
|
"description": "A minimal git repository with a single Python source file and README",
|
|
"files": {
|
|
"README.md": "# Test Repo\nMinimal repo for M1 source-code smoke tests.\n",
|
|
"src/main.py": "\"\"\"Main entry point.\"\"\"\n\n\ndef main() -> None:\n print(\"hello\")\n\n\nif __name__ == \"__main__\":\n main()\n",
|
|
"src/__init__.py": ""
|
|
},
|
|
"branch": "main",
|
|
"remote_url": "file:///tmp/m1-smoke-test-repo.git"
|
|
},
|
|
{
|
|
"name": "git_repo_with_multiple_branches",
|
|
"description": "Git repository with main and feature branches for branch-switching tests",
|
|
"files": {
|
|
"README.md": "# Multi-branch Repo\n",
|
|
"src/app.py": "\"\"\"App module.\"\"\"\n\nAPP_VERSION = \"0.1.0\"\n"
|
|
},
|
|
"branches": ["main", "feature/test"],
|
|
"remote_url": "file:///tmp/m1-multi-branch-repo.git"
|
|
}
|
|
]
|
|
}
|