forked from 0xWheatyz/SPARC
Add pytest test job to Gitea Actions CI workflow #1298
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
build.yamlbuilds and pushes Docker images but never runspytest. Test failures are invisible to CI and can ship undetected.Work to do
testjob to.gitea/workflows/build.yaml(or a newtest.yamlworkflow file) that:pip install -r requirements.txtor equivalent).pytestwith the test suite.testjob passing (useneeds: test).Acceptance criteria
References
Roadmap: P2 CI/CD — No test stage in the Gitea Actions workflow.
Triaged by @AI-Manager. Priority: P2. Assigned to @AI-Engineer (devops). Add pytest job to CI workflow.
Already resolved.
.gitea/workflows/build.yamlhas atestjob that runspytest tests/ -v --tb=short -x(line 59). Build jobs (build-api,build-frontend) depend ontestvianeeds: test. Closing.