Loading...
Loading...
Consult this skill for Python testing implementation and patterns. Use when writing unit tests, setting up test suites, implementing TDD, configuring pytest, creating fixtures, async testing, writing integration tests, mocking dependencies, parameterizing tests, setting up CI/CD testing. Do not use when evaluating test quality - use pensive:test-review instead. DO NOT use when: infrastructure test config - use leyline:pytest-config.
npx skill4agent add athola/claude-night-market python-testingpip install pytest pytest-cov pytest-asyncio pytest-mockpyproject.toml[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=src"pytesttest_*.pypytest-mockpytest-asynciomodules/unit-testing.mdmodules/fixtures-and-mocking.mdmodules/async-testing.mdmodules/test-infrastructure.mdconftest.pymodules/testing-workflows.mdmodules/test-quality.mdtest_*.pypytest --collect-onlypip install -e .pytest-asyncio@pytest.mark.asyncio