Codebase list python-castellan / 5fdf524
Add prefix "$" for command examples This commits adds "$" as a prefix for command examples. Change-Id: I4ad7a65c35d401444785fbdc1a33c2fb1fe717b1 Yushiro FURUKAWA 7 years ago
1 changed file(s) with 5 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
2323 .. code-block:: bash
2424
2525 # Executes tests on Python 2.7
26 tox -e py27
26 $ tox -e py27
2727
2828
2929 .. note::
5252 .. code-block:: bash
5353
5454 # Generate a sample configuration file
55 tox -e genconfig
55 $ tox -e genconfig
5656
5757 ``castellan/etc/castellan/castellan-functional.conf.sample`` is generated.
5858 It must be renamed to ``castellan-functional.conf`` and placed in
7676 .. code-block:: bash
7777
7878 # Execute Barbican Functional Tests
79 tox -e functional
79 $ tox -e functional
8080
8181
8282 By default, the functional tox job will use ``testr`` to execute the
9292 .. code-block:: bash
9393
9494 # hit the pdb breakpoint
95 tox -e debug
95 $ tox -e debug
9696
9797 Once in the Python Debugger, you can use the commands as stated in the
9898 `Debugger Commands` section here: https://docs.python.org/2/library/pdb.html
107107 .. code-block:: bash
108108
109109 # Checks python code style
110 tox -e pep8
110 $ tox -e pep8
111111
112112 Any comments on bad coding style will output to the terminal.