© 2025-2026 PySpect
Loading...
| Package | Comment | GitHub Stars |
|---|---|---|
| pytest | The most popular Python testing framework, with a simple syntax and a rich plugin ecosystem. | · |
| hypothesis | Property-based testing library that generates test cases automatically from defined strategies. | · |
| coverage | Measures code coverage during test execution and produces detailed reports. | · |
| pytest-cov | pytest plugin that integrates coverage.py for measuring code coverage in pytest runs. | · |
| pytest-mock | pytest plugin that provides a mocker fixture wrapping unittest.mock. | · |
| pytest-asyncio | pytest plugin for testing async/await code with asyncio. | · |
| faker | Generates realistic fake data (names, addresses, emails, etc.) for use in tests and fixtures. | · |
| factory-boy | A fixtures replacement based on factory patterns, for generating test objects with sensible defaults. | · |
| responses | A utility for mocking the Python requests library in tests. | · |
| freezegun | Allows tests to mock the current date and time by patching datetime objects. | · |
| tox | Test automation tool for running tests across multiple Python environments. | · |
| nox | A flexible test automation tool using Python scripts instead of INI config, similar to tox. | · |