aboutsummaryrefslogtreecommitdiffstats
path: root/docs/development/getting-started.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-11 22:54:40 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-11 22:54:40 -0600
commit18962cc15b8562e46ea8b6f60fb5072c344d9b12 (patch)
treec37668ec8dfd4cd7a0aed5372c8b0399361d1130 /docs/development/getting-started.rst
parent450cd0252b4e8e53d574b18a5ad274c2ac32cca6 (diff)
downloadcryptography-18962cc15b8562e46ea8b6f60fb5072c344d9b12.tar.gz
cryptography-18962cc15b8562e46ea8b6f60fb5072c344d9b12.tar.bz2
cryptography-18962cc15b8562e46ea8b6f60fb5072c344d9b12.zip
add explicit backend selection examples in a code block
Diffstat (limited to 'docs/development/getting-started.rst')
-rw-r--r--docs/development/getting-started.rst9
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/development/getting-started.rst b/docs/development/getting-started.rst
index d2d13a15..412f0545 100644
--- a/docs/development/getting-started.rst
+++ b/docs/development/getting-started.rst
@@ -55,8 +55,13 @@ Explicit Backend Selection
While testing you may want to run tests against a subset of the backends that
cryptography supports. Explicit backend selection can be done via the
``--backend`` flag. This flag should be passed to ``py.test`` with a comma
-delimited list of backend names. To use it with ``tox`` you must pass it as
-``tox -- --backend=openssl``.
+delimited list of backend names.
+
+
+.. code-block:: console
+
+ $ tox -- --backend=openssl
+ $ py.test --backend=openssl,commoncrypto
Building Documentation
~~~~~~~~~~~~~~~~~~~~~~