pytest
Installation
SKILL.md
pytest
Complete Python testing toolkit with pytest.
Running Tests
# Run all tests
pytest
# Run specific file/directory
pytest tests/test_api.py
pytest tests/
# Run specific test
pytest tests/test_api.py::test_login
pytest tests/test_api.py::TestUserClass::test_create