testing-and-quality-assurance

Installation
SKILL.md

Testing & Quality Assurance

Running the suite

From repo root with .venv active:

.venv/bin/python -m pytest                    # full suite
.venv/bin/python -m pytest -m unit            # unit only
.venv/bin/python -m pytest -m "not slow"      # skip slow ML tests
.venv/bin/python -m pytest tests/test_basic.py -v

pytest.ini config:

  • testpaths = tests
  • --strict-markers — unknown markers fail.
  • Filters out transformers/torch deprecation noise.

Markers (enforced)

Installs
11
First Seen
Mar 1, 2026
testing-and-quality-assurance — findinfinitelabs/chuuk