Claude Code Plugins

Community-maintained marketplace

Feedback

running tests

@neurostuff/NiMARE
201
0

Run tests to ensure code functionality and correctness.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name running tests
description Run tests to ensure code functionality and correctness.

Running Tests

  • 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.