5 Building and maintaining a test suite

 

This chapter covers

  • Running unit tests with pytest
  • Creating test coverage reports with pytest-cov
  • Reducing duplicated test code with parameterization
  • Automating packaging for testing using tox
  • Creating a test matrix

Tests are an important aspect of any project you plan to maintain. They can ensure that new functionality behaves as you expect and that existing functionality hasn’t regressed. Tests are the guardrails for refactoring code—a common activity as projects mature.

With all this value that tests provide, you might think all open source packages would be thoroughly tested. But many projects pass on things like code coverage or testing for multiple target platforms because of the maintenance burden they present. Some maintainers even create maintenance burden without realizing it due to the way they design and run their test suite. In this chapter, you’ll learn some beneficial aspects of testing and how to introduce them to your package’s test suite, with an eye toward automation and scalability.

If you’re still new to unit-testing concepts, you can learn all about them in Roy Osherove’s The Art of Unit Testing, 3rd ed. (Manning Publications, anticipated 2023, http://mng.bz/YKGj).

Important

You can use the code companion (http://mng.bz/69A5) to check your work for the exercises in this chapter.

5.1 Integrating a testing setup

 
 

5.1.1 The pytest testing framework

 

5.1.2 Adding test coverage measurement

 
 

5.1.3 Increasing test coverage

 
 

5.2 Addressing testing tedium

 
 
 
 

5.2.1 Addressing repetitive, data-driven tests

 

5.2.2 Addressing frequent package installation

 
 
 
 

5.2.3 Configuring test environments

 
 

5.2.4 Tips for quicker and safer testing

 
 
 

Answers to exercises

 
 

Summary

 
 
sitemap

Unable to load book!

The book could not be loaded.

(try again in a couple of minutes)

manning.com homepage