Paul Cutler
2018-10-03 c5d3424fe640f0e848078402da2027b7d9b7d00e
Change references to "py.test" in all Quick Tutorial documentation

Change all references of "py.test" to "pytest" per pytest 3.0 release
in the Quick Tutorial documentation
12 files modified
26 ■■■■ changed files
docs/quick_tutorial/databases.rst 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/forms.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/json.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/logging.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/more_view_classes.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/request_response.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/routing.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/sessions.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/static_assets.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/templating.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/view_classes.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/views.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/databases.rst
@@ -128,11 +128,11 @@
   .. literalinclude:: databases/tutorial/tests.py
       :linenos:
#. Run the tests in your package using ``py.test``:
#. Run the tests in your package using ``pytest``:
   .. code-block:: bash
       $VENV/bin/py.test tutorial/tests.py -q
       $VENV/bin/pytest tutorial/tests.py -q
       ..
       2 passed in 1.41 seconds
docs/quick_tutorial/forms.rst
@@ -91,7 +91,7 @@
   .. code-block:: bash
       $VENV/bin/py.test tutorial/tests.py -q
       $VENV/bin/pytest tutorial/tests.py -q
       ..
       2 passed in 0.45 seconds
docs/quick_tutorial/json.rst
@@ -54,7 +54,7 @@
   .. code-block:: bash
       $VENV/bin/py.test tutorial/tests.py -q
       $VENV/bin/pytest tutorial/tests.py -q
       .....
       5 passed in 0.47 seconds
docs/quick_tutorial/logging.rst
@@ -54,7 +54,7 @@
   .. code-block:: bash
       $VENV/bin/py.test tutorial/tests.py -q
       $VENV/bin/pytest tutorial/tests.py -q
       ....
       4 passed in 0.41 seconds
docs/quick_tutorial/more_view_classes.rst
@@ -105,7 +105,7 @@
   .. code-block:: bash
       $VENV/bin/py.test tutorial/tests.py -q
       $VENV/bin/pytest tutorial/tests.py -q
       ..
       2 passed in 0.40 seconds
docs/quick_tutorial/request_response.rst
@@ -61,7 +61,7 @@
   .. code-block:: bash
       $VENV/bin/py.test tutorial/tests.py -q
       $VENV/bin/pytest tutorial/tests.py -q
       .....
       5 passed in 0.30 seconds
docs/quick_tutorial/routing.rst
@@ -79,7 +79,7 @@
   .. code-block:: bash
       $VENV/bin/py.test tutorial/tests.py -q
       $VENV/bin/pytest tutorial/tests.py -q
       ..
       2 passed in 0.39 seconds
docs/quick_tutorial/sessions.rst
@@ -60,7 +60,7 @@
   .. code-block:: bash
       $VENV/bin/py.test tutorial/tests.py -q
       $VENV/bin/pytest tutorial/tests.py -q
       ....
       4 passed in 0.42 seconds
docs/quick_tutorial/static_assets.rst
@@ -54,7 +54,7 @@
   .. code-block:: bash
       $VENV/bin/py.test tutorial/tests.py -q
       $VENV/bin/pytest tutorial/tests.py -q
       ....
       5 passed in 0.50 seconds
docs/quick_tutorial/templating.rst
@@ -92,7 +92,7 @@
   .. code-block:: bash
       $VENV/bin/py.test tutorial/tests.py -q
       $VENV/bin/pytest tutorial/tests.py -q
       ....
       4 passed in 0.46 seconds
docs/quick_tutorial/view_classes.rst
@@ -61,7 +61,7 @@
   .. code-block:: bash
       $VENV/bin/py.test tutorial/tests.py -q
       $VENV/bin/pytest tutorial/tests.py -q
       ....
       4 passed in 0.34 seconds
docs/quick_tutorial/views.rst
@@ -68,7 +68,7 @@
   .. code-block:: bash
       $VENV/bin/py.test tutorial/tests.py -q
       $VENV/bin/pytest tutorial/tests.py -q
       ....
       4 passed in 0.28 seconds