Book description
Test applications, packages, and libraries large and small with pytest, Python's most powerful testing framework. pytest helps you write tests quickly and keep them readable and maintainable. In this fully revised edition, explore pytest's superpowers - simple asserts, fixtures, parametrization, markers, and plugins - while creating simple tests and test suites against a small database application. Using a robust yet simple fixture model, it's just as easy to write small tests with pytest as it is to scale up to complex functional testing. This book shows you how.
pytest is undeniably the best choice for testing Python projects. It's a full-featured, flexible, and extensible testing framework. pytest's fixture model allows you to share test data and setup procedures across multiple layers of tests. The pytest framework gives you powerful features such as assert rewriting, parametrization, markers, plugins, parallel test execution, and clear test failure reporting - with no boilerplate code.
With simple step-by-step instructions and sample code, this book gets you up to speed quickly on this easy-to-learn yet powerful tool. Write short, maintainable tests that elegantly express what you're testing. Speed up test times by distributing tests across multiple processors and running tests in parallel. Use Python's builtin assert statements instead of awkward assert helper functions to make your tests more readable. Move setup code out of tests and into fixtures to separate setup failures from test failures. Test error conditions and corner cases with expected exception testing, and use one test to run many test cases with parameterized testing. Extend pytest with plugins, connect it to continuous integration systems, and use it in tandem with tox, mock, coverage, and even existing unittest tests.
Write simple, maintainable tests quickly with pytest.
What You Need:
The examples in this book were written using Python 3.10 and pytest 7. pytest 7 supports Python 3.5 and above.
Publisher resources
Table of contents
- Acknowledgments
- Preface
-
Part I. Primary Power
- 1. Getting Started with pytest
-
2. Writing Test Functions
- Installing the Sample Application
- Writing Knowledge-Building Tests
- Using assert Statements
- Failing with pytest.fail() and Exceptions
- Writing Assertion Helper Functions
- Testing for Expected Exceptions
- Structuring Test Functions
- Grouping Tests with Classes
- Running a Subset of Tests
- Review
- Exercises
- What’s Next
-
3. pytest Fixtures
- Getting Started with Fixtures
- Using Fixtures for Setup and Teardown
- Tracing Fixture Execution with –setup-show
- Specifying Fixture Scope
- Sharing Fixtures through conftest.py
- Finding Where Fixtures Are Defined
- Using Multiple Fixture Levels
- Using Multiple Fixtures per Test or Fixture
- Deciding Fixture Scope Dynamically
- Using autouse for Fixtures That Always Get Used
- Renaming Fixtures
- Review
- Exercises
- What’s Next
- 4. Builtin Fixtures
- 5. Parametrization
-
6. Markers
- Using Builtin Markers
- Skipping Tests with pytest.mark.skip
- Skipping Tests Conditionally with pytest.mark.skipif
- Expecting Tests to Fail with pytest.mark.xfail
- Selecting Tests with Custom Markers
- Marking Files, Classes, and Parameters
- Using “and,” “or,” “not,” and Parentheses with Markers
- Being Strict with Markers
- Combining Markers with Fixtures
- Listing Markers
- Review
- Exercises
- What’s Next
-
Part II. Working with Projects
- 7. Strategy
-
8. Configuration Files
- Understanding pytest Configuration Files
- Saving Settings and Flags in pytest.ini
- Using tox.ini, pyproject.toml, or setup.cfg in place of pytest.ini
- Determining a Root Directory and Config File
- Sharing Local Fixtures and Hook Functions with conftest.py
- Avoiding Test File Name Collision
- Review
- Exercises
- What’s Next
- 9. Coverage
-
10. Mocking
- Isolating the Command-Line Interface
- Testing with Typer
- Mocking an Attribute
- Mocking a Class and Methods
- Keeping Mock and Implementation in Sync with Autospec
- Making Sure Functions Are Called Correctly
- Creating Error Conditions
- Testing at Multiple Layers to Avoid Mocking
- Using Plugins to Assist Mocking
- Review
- Exercises
- What’s Next
-
11. tox and Continuous Integration
- What Is Continuous Integration?
- Introducing tox
- Setting Up tox
- Running tox
- Testing Multiple Python Versions
- Running tox Environments in Parallel
- Adding a Coverage Report to tox
- Specifying a Minimum Coverage Level
- Passing pytest Parameters Through tox
- Running tox with GitHub Actions
- Review
- Exercises
- What’s Next
- 12. Testing Scripts and Applications
- 13. Debugging Test Failures
- Part III. Booster Rockets
- A1. Virtual Environments
- A2. pip
Product information
- Title: Python Testing with pytest
- Author(s):
- Release date: February 2022
- Publisher(s): Pragmatic Bookshelf
- ISBN: 9781680508604
You might also like
book
Python Testing with pytest
Do less work when testing your Python code, but be just as expressive, just as elegant, …
book
Hypermodern Python Tooling
Keeping up with the Python ecosystem can be daunting. Its developer tooling doesn't provide the out-of-the-box …
book
Automate the Boring Stuff with Python, 2nd Edition
If you’ve ever spent hours renaming files or updating hundreds of spreadsheet cells, you know how …
book
Head First Python, 3rd Edition
What will you learn from this book? Want to learn the Python language without slogging your …