Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:209
forks:68
updated:2025년 12월 18일 21:33
SKILL.md
Set up a development environment for writing and testing code.
Write code to implement features or fix issues.
how to review code effectively
| name | running tests |
| description | Run tests to ensure code functionality and correctness. |
DO NOT RUN ALL TESTS AT ONCE UNLESS EXPLICITLY INSTRUCTED TO DO SO.
Prefer running only the tests relevant to the code you have modified or added.
Use pytest to run tests from the repository root, for example:
pytest nimare/tests/test_annotate_gclda.py::test_gclda_symmetric
For a slightly broader check without performance-heavy tests, mirror the Makefile behavior:
pytest -m "not performance_estimators and not performance_correctors and not performance_smoke and not cbmr_importerror" --cov=nimare nimare
Run tests before and after significant refactors or API changes to confirm behavior is preserved.