From 07dedaf3cf890a60b8b3d5e05e554682a45983a7 Mon Sep 17 00:00:00 2001 From: Andreas Pelme Date: Fri, 12 Oct 2018 13:33:26 +0200 Subject: [PATCH] Spell pytest without the dot Referring to pytest as py.test is deprecated. References: https://docs.pytest.org/en/latest/ https://twitter.com/hashtag/dropthedot --- Doc/library/unittest.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 83aee1b0262176..2b0b0f1795cbe4 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -56,7 +56,7 @@ test runner Kent Beck's original paper on testing frameworks using the pattern shared by :mod:`unittest`. - `Nose `_ and `py.test `_ + `Nose `_ and `pytest `_ Third-party unittest frameworks with a lighter-weight syntax for writing tests. For example, ``assert func(10) == 42``.