원클릭으로
tests
Run all tests and iterate to fix failures
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run all tests and iterate to fix failures
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run linting tools (ruff, black, mypy) and fix placeholder/TRACKED_TASK statements
Run linting tools (ruff, black, mypy) and fix placeholder/TRACKED_TASK statements
Run all tests and iterate to fix failures
Address 10 GitHub issues sequentially, creating and merging PRs one by one with CI/CD verification
Fix 5 GitHub issues in a single combined PR, iterating until CI/CD passes
Review recent assessments and sync GitHub issues - create missing issues and close resolved ones
| name | tests |
| description | Run all tests and iterate to fix failures |
Run the complete test suite and fix any failing tests.
Discover test configuration:
pytest.ini, pyproject.toml, or setup.cfg for test configurationpackage.json for JavaScript/TypeScript teststests/, test/, *_test.py, test_*.pyRun Python tests:
pytest -v --tb=short
If pytest is not available, try:
python -m pytest -v --tb=short
Run JavaScript/TypeScript tests (if applicable):
npm test
or
yarn test
For each failing test:
Read the test file and understand what it's testing
Read the implementation being tested
Identify the root cause of the failure
Fix the implementation (preferred) or update the test if the test is incorrect
Re-run the specific test to verify the fix:
pytest path/to/test_file.py::test_name -v
Iterate until all tests pass:
Final verification:
pytest -v
Report: