diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-05-08 12:07:08 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-05-08 12:07:08 -0700 |
| commit | c28854062b2092a416fb48a671b07248c47df6b5 (patch) | |
| tree | 585208aa81b4e1fbae994965ec3a3eb11b364c8e /docs/conventions.rst | |
| parent | d785b7d7e3608848cdb9d21e7b43b524f4251ff3 (diff) | |
| parent | d0c1f9ad5e82c265974f5c678c9d4ea459375593 (diff) | |
| download | pyramid-c28854062b2092a416fb48a671b07248c47df6b5.tar.gz pyramid-c28854062b2092a416fb48a671b07248c47df6b5.tar.bz2 pyramid-c28854062b2092a416fb48a671b07248c47df6b5.zip | |
Merge pull request #2550 from Pylons/vincent-ferotin-scaffolds-allow-pytest-run-without-args
Vincent ferotin scaffolds allow pytest run without args
Diffstat (limited to 'docs/conventions.rst')
| -rw-r--r-- | docs/conventions.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/conventions.rst b/docs/conventions.rst index 0f5daf106..43853882c 100644 --- a/docs/conventions.rst +++ b/docs/conventions.rst @@ -55,7 +55,7 @@ character, e.g.: .. code-block:: bash - $ $VENV/bin/py.test tutorial/tests.py -q + $ $VENV/bin/py.test -q (See :term:`venv` for the meaning of ``$VENV``) @@ -64,7 +64,7 @@ drive letter and/or a directory name, e.g.: .. code-block:: doscon - c:\examples> %VENV%\Scripts\py.test tutorial\tests.py -q + c:\examples> %VENV%\Scripts\py.test -q (See :term:`venv` for the meaning of ``%VENV%``) @@ -73,7 +73,7 @@ example block commands are prefixed only with a ``>`` character, e.g.: .. code-block:: doscon - > %VENV%\Scripts\py.test tutorial\tests.py -q + > %VENV%\Scripts\py.test -q When a command that should be typed on one line is too long to fit on a page, the backslash ``\`` is used to indicate that the following printed line should |
