A pytest plugin to run tests in Jupyter Notebooks.
Designed to play nicely with chmp/ipytest.
My use case is so that I can teach my son to code and use notebooks to do that but still have the tests show up in vscode test explorer.
We also like to have all our tests run in a github workflow - and this makes that simple too.
Usage is very simple:
-
Install from pypi (e.g. with pip):
pip install pytest-ipynb2
-
Enable by adding to the default options in
pyproject.toml
:[tool.pytest.ini_options] addopts = [ "-p pytest_ipynb2.plugin", ]
-
That's it! pytest will now collect and execute any tests in jupyter notebooks when run form the command line or IDE.
I'm assuming you also want to run your tests inside your notebooks ... so simply use the %%ipytest
magic in a cell and pytest will collect any tests based on the usual naming and identification rules.
Note: tests will only be identified in cells which use the
%%ipytest
magic
For more details see the docs
-
Enables pytest to collect and execute tests stored within jupyter notebooks
-
Provides meaningful test logs identifying the notebook, cell and test function
-
Handles tests with fixtures and parametrization
-
Executes all cells above the test cell before running the tests in that cell.
WARNING: this means that if any previous cells have side-effects they will occur on test collection, just as they would if included in a pytest test module.
This is an early version. The following things are still on my to-do list:
- Handling tests grouped into classes #22 (might work - I've not checked yet)
- Assertion re-writing. Failed tests don't yet give the expected quality of pytest output about the failure #20 (Workaround - re-run the test using ipytest inside the notebook)
- v1.0.0 will include dedicated commandline options rather than requiring you to specify the plugin #12
- This won't play nicely with other magics or direct calls to ipytest functions yet #23