diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-08 02:21:20 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-08 02:21:20 -0700 |
| commit | 1db3bacaab1f68344806ad91ebb6ab62c06a6788 (patch) | |
| tree | ecf1851240e1671a3a69ede8b9998c2ebb59689c /docs/quick_tutorial/functional_testing.rst | |
| parent | a1bc90aeca43111e5fe68132721185e8b6ebfa94 (diff) | |
| download | pyramid-1db3bacaab1f68344806ad91ebb6ab62c06a6788.tar.gz pyramid-1db3bacaab1f68344806ad91ebb6ab62c06a6788.tar.bz2 pyramid-1db3bacaab1f68344806ad91ebb6ab62c06a6788.zip | |
Replace [test] with [testing], and quote as needed
Diffstat (limited to 'docs/quick_tutorial/functional_testing.rst')
| -rw-r--r-- | docs/quick_tutorial/functional_testing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tutorial/functional_testing.rst b/docs/quick_tutorial/functional_testing.rst index d3ada3793..236152003 100644 --- a/docs/quick_tutorial/functional_testing.rst +++ b/docs/quick_tutorial/functional_testing.rst @@ -45,11 +45,11 @@ Steps :emphasize-lines: 14 #. Install our project and its newly added dependency. - Note that we use the extra specifier ``[test]`` to install testing requirements. + Note that we use the extra specifier ``[testing]`` to install testing requirements and surround it with double quote marks. .. code-block:: bash - $VENV/bin/pip install -e .[test] + $VENV/bin/pip install -e ".[testing]" #. Let's extend ``functional_testing/tutorial/tests.py`` to include a functional test: |
