diff options
author | Donald Stufft <donald@stufft.io> | 2013-10-06 12:11:16 -0700 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2013-10-06 12:11:16 -0700 |
commit | 309bcf6b8ca65430b76db9d5d5ea038ccc61ea8d (patch) | |
tree | fd048b5c064caa2b87f4f9c4f7eeb099a921ee05 /docs | |
parent | b643b806145be95023e82c75a5bcd4ecadaa3da2 (diff) | |
parent | ae5c907769365d1e7f89b1b7db99eb861d149b25 (diff) | |
download | cryptography-309bcf6b8ca65430b76db9d5d5ea038ccc61ea8d.tar.gz cryptography-309bcf6b8ca65430b76db9d5d5ea038ccc61ea8d.tar.bz2 cryptography-309bcf6b8ca65430b76db9d5d5ea038ccc61ea8d.zip |
Merge pull request #93 from alex/highlight-better
Use the right lexer for these examples
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contributing.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/contributing.rst b/docs/contributing.rst index 8f6a178e..1f4c1ca9 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -81,7 +81,7 @@ development dependencies. These are listed in ``dev-requirements.txt`` and they can be installed in a `virtualenv`_ using `pip`_. Once you've installed the dependencies, install ``cryptography`` in ``editable`` mode. For example: -.. code-block:: sh +.. code-block:: console # Create a virtualenv and activate it $ pip install --requirement dev-requirements.txt @@ -96,7 +96,7 @@ Running Tests designed to be run using `pytest`_. `pytest`_ will discover the tests automatically, so all you have to do is: -.. code-block:: sh +.. code-block:: console $ py.test ... @@ -108,7 +108,7 @@ You can also verify that the tests pass on other supported Python interpreters. For this we use `tox`_, which will automatically create a `virtualenv`_ for each supported Python version and run the tests. For example: -.. code-block:: sh +.. code-block:: console $ tox ... @@ -131,7 +131,7 @@ written in `reStructured Text`_ and rendered using `Sphinx`_. Use `tox`_ to build the documentation. For example: -.. code-block:: sh +.. code-block:: console $ tox -e docs ... |