A pytest plugin for testing Jupyter libraries and extensions.
Project description
pytest-jupyter
A set of pytest plugins for Jupyter libraries and extensions.
Basic Usage
First, install pytest-jupyter
from PyPI using pip:
pip install pytest-jupyter
This installs the basic pytest-jupyter package that includes fixture definitions for the various Jupyter-based pytest plugins.
To use one of these plugins, you'll also need to install their dependencies. This requires a second pip install
call. For example, if you'd like to use the jupyter_server
plugin, you'll need to call:
pip install "pytest-jupyter[server]"
This should install everything you need for the plugin to work.
To use a plugin, add it to the pytest_plugins
list in the conftest.py
of your project's root test directory.
# inside the conftest.py
pytest_plugins = ["pytest_jupyter.jupyter_server"]
This library includes an echo_kernel
, which is useful to speed up testing.
You must have either "pytest-jupyter[server]"
or "pytest-jupyter[client]"
installed to use the echo kernel.
The pytest_jupyter.jupyter_client
plugin provides an installed
echo_kernel_spec
as a fixture, and a start_kernel
fixture
that provides a factory function that starts a kernel using the echo
kernel
by default.
Note: The server plugin also includes the client plugin, so you can use both
sets of fixtures with "pytest_jupyter.jupyter_server"
. Both the client
and server
plugins also include the core fixtures.
The server fixures use the echo kernel by default. To override this behavior,
override the jp_server_config
fixture and add the following config:
{
"MultiKernelManager": {
"default_kernel_name": "<desired_kernel_name"
}
}
All fixtures inside the plugin (e.g. jupyter_server) will be available to all of your project's unit tests. You can use a fixtures by passing it as an argument to your unit test function:
async def test_jupyter_server_api(jp_fetch):
# Send request to a temporary Jupyter Server Web Application
response = await jp_fetch("api/spec.yml")
# Confirm that the request is successful.
assert response.code == 200
You can list the fixtures for a given plugin using the --fixtures
argument from the pytest command line interface:
pytest --fixtures -p pytest_jupyter.jupyter_server
or by calling the pytest --fixtures
where the plugin is listed in the pytest_plugins
variable of a given test directory.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytest_jupyter-0.2.2.tar.gz
.
File metadata
- Download URL: pytest_jupyter-0.2.2.tar.gz
- Upload date:
- Size: 12.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7634970449f3ffb5f72d76bc3a337b7bf51a3ad7c15ddcb0b499c905704fee5a |
|
MD5 | 9d4c4443023cfc1977d5e3cbe62b4649 |
|
BLAKE2b-256 | 3331a9e03b5b69d5bdfe58626f23b7b548d3ec7baf14876cb4450d0cb0cc4790 |
Provenance
File details
Details for the file pytest_jupyter-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: pytest_jupyter-0.2.2-py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | edb96747f1dcd9eeee872f339330466d0762c46b5cd89e538ef579bf8062fafa |
|
MD5 | 524404196289882b6e2dd0e9f6961b46 |
|
BLAKE2b-256 | 246316d945c7219e373bca6bcdc1de8f8ef99fc0969a860dc8d44a1b12f303de |