Python Testing with pytest, Second Edition: Directories have dashes instead of underscores (page 219)

@brianokken

The exercises in Chapter 15 refer to the following two directories:

pytest-skip-slow
slow-full

In the downloaded source these directories use underscores instead of dashes as separators:

pytest_skip_slow
pytest_skip_slow_final

References to these directories are in three places in the Exercises:

  1. In the bulleted list above Exercise 1:
The supplied source code includes the following:

* local (the local conftest plugin)
* pytest-skip-slow (just the copy from local into new names)
* pytest-skip-slow-full (a possible final layout for the completed plugin)
  1. In the text of Exercise 2, shown below:
Go to the pytest-skip-slow directory.
  1. In addition, the overview text includes these references:
Walking through the steps to go from pytest-skip-slow to pytest-skip-slow-full will help you learn how to build and test a plugin.