summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-04-08 04:46:45 -0700
committerSteve Piercy <web@stevepiercy.com>2016-04-08 04:46:45 -0700
commit25c809968d16fbaa07f667713fd35d64d34de877 (patch)
treebddbb4e5622cffd2c85171208ab62572d6dded52 /docs
parente551a4f026c1522ba4045cfb1799d050bdb072bc (diff)
downloadpyramid-25c809968d16fbaa07f667713fd35d64d34de877.tar.gz
pyramid-25c809968d16fbaa07f667713fd35d64d34de877.tar.bz2
pyramid-25c809968d16fbaa07f667713fd35d64d34de877.zip
fix syntax highlighting
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorials/wiki2/installation.rst46
1 files changed, 24 insertions, 22 deletions
diff --git a/docs/tutorials/wiki2/installation.rst b/docs/tutorials/wiki2/installation.rst
index ca7b8ae8a..d6745e758 100644
--- a/docs/tutorials/wiki2/installation.rst
+++ b/docs/tutorials/wiki2/installation.rst
@@ -383,28 +383,30 @@ On Windows
c:\pyramidtut\tutorial> %VENV%\Scripts\py.test --cov=tutorial tutorial\tests.py
-If successful, you will see output something like this::
-
-======================== test session starts ========================
-platform Python 3.5.1, pytest-2.9.1, py-1.4.31, pluggy-0.3.1
-rootdir: /Users/stevepiercy/projects/pyramidtut/tutorial, inifile:
-plugins: cov-2.2.1
-collected 2 items
-
-tutorial/tests.py ..
------------------- coverage: platform Python 3.5.1 ------------------
-Name Stmts Miss Cover
-------------------------------------------------------
-tutorial/__init__.py 13 9 31%
-tutorial/models.py 12 0 100%
-tutorial/scripts/__init__.py 0 0 100%
-tutorial/scripts/initializedb.py 24 24 0%
-tutorial/tests.py 39 0 100%
-tutorial/views.py 11 0 100%
-------------------------------------------------------
-TOTAL 99 33 67%
-
-===================== 2 passed in 0.57 seconds ======================
+If successful, you will see output something like this:
+
+.. code-block:: bash
+
+ ======================== test session starts ========================
+ platform Python 3.5.1, pytest-2.9.1, py-1.4.31, pluggy-0.3.1
+ rootdir: /Users/stevepiercy/projects/pyramidtut/tutorial, inifile:
+ plugins: cov-2.2.1
+ collected 2 items
+
+ tutorial/tests.py ..
+ ------------------ coverage: platform Python 3.5.1 ------------------
+ Name Stmts Miss Cover
+ ------------------------------------------------------
+ tutorial/__init__.py 13 9 31%
+ tutorial/models.py 12 0 100%
+ tutorial/scripts/__init__.py 0 0 100%
+ tutorial/scripts/initializedb.py 24 24 0%
+ tutorial/tests.py 39 0 100%
+ tutorial/views.py 11 0 100%
+ ------------------------------------------------------
+ TOTAL 99 33 67%
+
+ ===================== 2 passed in 0.57 seconds ======================
Our package doesn't quite have 100% test coverage.