Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions website/content/07_programs_libraries_modules/55_tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Add this to your test file, run it, and you're off to the races. You can also sk
Here, you don't need to make your test file runnable (by using `unittest.main()`), instead you're running `unittest` directly and telling it where to find your tests.

{{% notice tip %}}
Use the `-v` (or `--verbose`) flag can give you more information about which tests were run
Using the `-v` (or `--verbose`) flag can give you more information about which tests were run
{{% /notice %}}


Expand Down Expand Up @@ -218,4 +218,4 @@ Subclassing the TestCase class gives you a bunch of useful assertions that you c

### Growing your Tests

Standard `unittest` tests are fine for most projects. As your programs grow and organization becomes more complex, you might want to consider an alternative testing framework or test runner. The 3rd party `nose2` and `pytest` modules are compatible with `unittest` but do things slightly differently. You can find more information in the [nose2 documentation](https://nose2.readthedocs.io/en/latest/) and [pytest documentation](https://docs.pytest.org/en/latest/).
Standard `unittest` tests are fine for most projects. As your programs grow and organization becomes more complex, you might want to consider an alternative testing framework or test runner. The 3rd party `nose2` and `pytest` modules are compatible with `unittest` but do things slightly differently. You can find more information in the [nose2 documentation](https://nose2.readthedocs.io/en/latest/) and [pytest documentation](https://docs.pytest.org/en/latest/).