a nose plugin for IPython notebooks
Project description
nosebook
========
|Build Status|
a `nose <http://nose.readthedocs.org/>`__ plugin for finding and running
IPython 3 notebooks as nose tests.
What it can't do in terms of ``setup`` and ``tearDown``, ``nosebook``
makes up for in simplicity: there is no ``%%nose`` magic, no metadata
required: the notebook on disk is the "gold master".
This makes it ideal for decreasing the burden of keeping documentation
up to date with tests by making a single set of notebooks into both
rich, multi-format documentation and a simple part of your test suite.
.. |Build Status| image:: https://travis-ci.org/bollwyvl/nosebook.svg?branch=master
:target: https://travis-ci.org/bollwyvl/nosebook
How does it work?
-----------------
Each notebook found according to
```nosebook-match`` <#nosebook-match>`__ is started with a fresh kernel,
based on the kernel specified in the notebook. If the kernel is not
installed, no tests will be run and the error will be logged.
Each ``code`` cell will be executed against the kernel in the order in
which it appears in the notebook: other cells e.g. ``markdown``,
``raw``, are ignored.
The number and content of outputs has to **match exactly**, with the
following parts of each output stripped:
- execution/prompt numbers, i.e. ``[1]:``
- tracebacks
Non-deterministic output, such as with ``_repr_`` methods that include
the memory location of the instance, will obviously not match every
time. You can use ```nosebook-scrub`` <#nosebook-scrub>`__ to rewrite or
remove offending content.
Related work
------------
- ```ipython_nose`` <http://github.com/taavi/ipython_nose>`__ allows
you to use a notebook as a nose runner, with traditional
``test_whatever`` methods.
Configuring ``nosetests`` to use ``nosebook``
---------------------------------------------
These options can be specified in your `nose config file <./.noserc>`__,
or as long-form command line arguments, i.e. ``--with-nosebook``.
``with-nosebook``
^^^^^^^^^^^^^^^^^
``nosetests`` will look for notebooks that seem like tests, as
configured with ```nosebook-match`` <#nosebook-match>`__.
*Default: False*
.. code:: python
# Basic usage
!nosetests --with-nosebook
``nosebook-match``
^^^^^^^^^^^^^^^^^^
A regular expression that tells nosebook what should be a testable
notebook.
*Default: ``.*[Tt]est.*.ipynb$``*
.. code:: python
# Run against all notebooks... probably not a good idea
!nosetests --with-nosebook --nosebook-match .*.ipynb
``nosebook-scrub``
^^^^^^^^^^^^^^^^^^
A regular expression that will be replaced throughout the expected
outputs and generated outputs.
*Default: None*
.. code:: python
# you can't fail if you don't try
!nosetests --with-nosebook --nosebook-scrub .+
For multiple scrub values, you can pass a JSON-formatted list of regular
expressions or object of pattern-replacement pairs that will be
replaced. When passed in via the command line, you'll have to escape
special characters: using a ``.noserc`` config file makes this easier.
.. code:: python
# there are only 10 kinds of tests...
!nosetests --with-nosebook --nosebook-scrub='["0", "1"]'
.. code:: python
# 0 is equally good
!nosetests --with-nosebook --nosebook-scrub='{"\\d+": "0"}'
Contributing
------------
`Issues <https://github.com/bollwyvl/nosebook/issues>`__ and `pull
requests <https://github.com/bollwyvl/nosebook/pulls>`__ welcome!
License
-------
``nosebook`` is released as free software under the `BSD 3-Clause
license <./LICENSE>`__.
========
|Build Status|
a `nose <http://nose.readthedocs.org/>`__ plugin for finding and running
IPython 3 notebooks as nose tests.
What it can't do in terms of ``setup`` and ``tearDown``, ``nosebook``
makes up for in simplicity: there is no ``%%nose`` magic, no metadata
required: the notebook on disk is the "gold master".
This makes it ideal for decreasing the burden of keeping documentation
up to date with tests by making a single set of notebooks into both
rich, multi-format documentation and a simple part of your test suite.
.. |Build Status| image:: https://travis-ci.org/bollwyvl/nosebook.svg?branch=master
:target: https://travis-ci.org/bollwyvl/nosebook
How does it work?
-----------------
Each notebook found according to
```nosebook-match`` <#nosebook-match>`__ is started with a fresh kernel,
based on the kernel specified in the notebook. If the kernel is not
installed, no tests will be run and the error will be logged.
Each ``code`` cell will be executed against the kernel in the order in
which it appears in the notebook: other cells e.g. ``markdown``,
``raw``, are ignored.
The number and content of outputs has to **match exactly**, with the
following parts of each output stripped:
- execution/prompt numbers, i.e. ``[1]:``
- tracebacks
Non-deterministic output, such as with ``_repr_`` methods that include
the memory location of the instance, will obviously not match every
time. You can use ```nosebook-scrub`` <#nosebook-scrub>`__ to rewrite or
remove offending content.
Related work
------------
- ```ipython_nose`` <http://github.com/taavi/ipython_nose>`__ allows
you to use a notebook as a nose runner, with traditional
``test_whatever`` methods.
Configuring ``nosetests`` to use ``nosebook``
---------------------------------------------
These options can be specified in your `nose config file <./.noserc>`__,
or as long-form command line arguments, i.e. ``--with-nosebook``.
``with-nosebook``
^^^^^^^^^^^^^^^^^
``nosetests`` will look for notebooks that seem like tests, as
configured with ```nosebook-match`` <#nosebook-match>`__.
*Default: False*
.. code:: python
# Basic usage
!nosetests --with-nosebook
``nosebook-match``
^^^^^^^^^^^^^^^^^^
A regular expression that tells nosebook what should be a testable
notebook.
*Default: ``.*[Tt]est.*.ipynb$``*
.. code:: python
# Run against all notebooks... probably not a good idea
!nosetests --with-nosebook --nosebook-match .*.ipynb
``nosebook-scrub``
^^^^^^^^^^^^^^^^^^
A regular expression that will be replaced throughout the expected
outputs and generated outputs.
*Default: None*
.. code:: python
# you can't fail if you don't try
!nosetests --with-nosebook --nosebook-scrub .+
For multiple scrub values, you can pass a JSON-formatted list of regular
expressions or object of pattern-replacement pairs that will be
replaced. When passed in via the command line, you'll have to escape
special characters: using a ``.noserc`` config file makes this easier.
.. code:: python
# there are only 10 kinds of tests...
!nosetests --with-nosebook --nosebook-scrub='["0", "1"]'
.. code:: python
# 0 is equally good
!nosetests --with-nosebook --nosebook-scrub='{"\\d+": "0"}'
Contributing
------------
`Issues <https://github.com/bollwyvl/nosebook/issues>`__ and `pull
requests <https://github.com/bollwyvl/nosebook/pulls>`__ welcome!
License
-------
``nosebook`` is released as free software under the `BSD 3-Clause
license <./LICENSE>`__.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nosebook-0.2.0.tar.gz
(7.3 kB
view details)
Built Distribution
File details
Details for the file nosebook-0.2.0.tar.gz
.
File metadata
- Download URL: nosebook-0.2.0.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55528fc3a77d5430e587825bc72ced371dceb4202737af4bac646d05775c12b1 |
|
MD5 | 1b615ab9b7e15d7aa0d386f5eac1c034 |
|
BLAKE2b-256 | ed15ffbd0e2c74816e5e3ef4f69025e687101c582c1f60cfd73e9ef224efb907 |
Provenance
File details
Details for the file nosebook-0.2.0-py2.py3-none-any.whl
.
File metadata
- Download URL: nosebook-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55a1100604ed471e2723539b12947c101f4c1aaf754bda9a421ae24690ded0b8 |
|
MD5 | e2824e8f54c0e67a552783b4c02145d7 |
|
BLAKE2b-256 | e62b01b4e1cef3a3fc6038ba2ba21db04bcaeea4a14dfdd48952152de9346a14 |