nbval icon indicating copy to clipboard operation
nbval copied to clipboard

A py.test plugin to validate Jupyter notebooks

Results 62 nbval issues
Sort by recently updated
recently updated
newest added

Without this patch, I couldn't really understand where the error was coming from -- turned out to be something in stderr emitted by one of our dependencies which recently got...

I'm packaging your module as an rpm package so I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account. - `python3 -sBm...

Looks like sphinx (5.1.1) shows some warnings on generate documenattion ```console + /usr/bin/sphinx-build -n -T -b man docs/source build/sphinx/man Running Sphinx v5.1.1 WARNING: Invalid configuration value found: 'language = None'....

Summary: What do you think about adding `--maxfail-per-notebook=n`, to allow stopping executing a notebook after its first failure? When using `--nbval-lax`, I really only want to know if the notebook...

- [x] add `# NBVAL_TEST_NAME: ` comment support - [x] offset cell indices by 1 to correspond to Jupyter's numbering - [ ] document & add tests - fixes #111

Hello nbval folks, first of all thanks a lot for your plugin! :) We've decided to use it on [ipycytoscape](https://github.com/QuantStack/ipycytoscape/) but we found a problem. Currently we're having the following...

Earlier today, pytest v7.0.0 was released. With this new pytest version installed, running `pytest --nbval my_notebook.ipynb` throws a deprecation warning: ```text E pytest.PytestRemovedIn8Warning: The (fspath: py.path.local) argument to IPyNbFile is...

## Summary of changes: * Modified `cell_num` to start at 1 to match IPython/Jupyter output. See #171 for the issue. ## Pytest Failures A couple of tests are failing on...

Special Regex Chars are Interpreted as Regex or something :) So the Pharse ``` AAA!!! ``` looks like ``` AAA ``` output example: ``` - AAA + AAA!!! ? +++...

In some cases, it may be that cells generate variable output of a consistent form, for example: - looping to producing N lines of printed out; - display a list...