aboutsummaryrefslogtreecommitdiffstats
path: root/docs/development/getting-started.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-11 22:46:39 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-11 22:46:39 -0600
commit450cd0252b4e8e53d574b18a5ad274c2ac32cca6 (patch)
tree9da081e19b275e8f1e75ad8af36dad717d42090b /docs/development/getting-started.rst
parent0839aa858f41f71b292c387f6bc3641083b965bc (diff)
downloadcryptography-450cd0252b4e8e53d574b18a5ad274c2ac32cca6.tar.gz
cryptography-450cd0252b4e8e53d574b18a5ad274c2ac32cca6.tar.bz2
cryptography-450cd0252b4e8e53d574b18a5ad274c2ac32cca6.zip
fix some indentation and a missing newline
Diffstat (limited to 'docs/development/getting-started.rst')
-rw-r--r--docs/development/getting-started.rst38
1 files changed, 19 insertions, 19 deletions
diff --git a/docs/development/getting-started.rst b/docs/development/getting-started.rst
index b367119e..d2d13a15 100644
--- a/docs/development/getting-started.rst
+++ b/docs/development/getting-started.rst
@@ -8,9 +8,9 @@ dependencies, install ``cryptography`` in ``editable`` mode. For example:
.. code-block:: console
- $ # Create a virtualenv and activate it
- $ pip install --requirement dev-requirements.txt
- $ pip install --editable .
+ $ # Create a virtualenv and activate it
+ $ pip install --requirement dev-requirements.txt
+ $ pip install --editable .
You are now ready to run the tests and build the documentation.
@@ -23,9 +23,9 @@ automatically, so all you have to do is:
.. code-block:: console
- $ py.test
- ...
- 62746 passed in 220.43 seconds
+ $ py.test
+ ...
+ 62746 passed in 220.43 seconds
This runs the tests with the default Python interpreter.
@@ -35,15 +35,15 @@ each supported Python version and run the tests. For example:
.. code-block:: console
- $ tox
- ...
- ERROR: py26: InterpreterNotFound: python2.6
- py27: commands succeeded
- ERROR: pypy: InterpreterNotFound: pypy
- ERROR: py32: InterpreterNotFound: python3.2
- py33: commands succeeded
- docs: commands succeeded
- pep8: commands succeeded
+ $ tox
+ ...
+ ERROR: py26: InterpreterNotFound: python2.6
+ py27: commands succeeded
+ ERROR: pypy: InterpreterNotFound: pypy
+ ERROR: py32: InterpreterNotFound: python3.2
+ py33: commands succeeded
+ docs: commands succeeded
+ pep8: commands succeeded
You may not have all the required Python versions installed, in which case you
will see one or more ``InterpreterNotFound`` errors.
@@ -68,10 +68,10 @@ Use `tox`_ to build the documentation. For example:
.. code-block:: console
- $ tox -e docs
- ...
- docs: commands succeeded
- congratulations :)
+ $ tox -e docs
+ ...
+ docs: commands succeeded
+ congratulations :)
The HTML documentation index can now be found at
``docs/_build/html/index.html``.