-
python3-pytest-html-3.2.0-1.lbn36.noarch
pytest-html pytest-html is a plugin for pytest <>_ that generates a HTML report
for test results. :target:
Located in
LBN
/
…
/
CI/CD
/
BastionLinux 36
-
python3-pytest-httpbin-1.0.0-6.fc36.noarch
Pytest-httpbin creates a pytest fixture that is dependency-injected into your
tests. It automatically starts up a HTTP server in a separate thread running
a local instance of httpbin (a web service for testing HTTP libraries) and
provides your test with the URL in the fixture.
This package provides the Python 3 implementation.
Located in
LBN
/
…
/
CI/CD
/
BastionLinux 36
-
python3-pytest-httpserver-1.0.4-1.fc36.noarch
This library is designed to help to test http clients without contacting
the real http server. In other words, it is a fake http server which is
accessible via localhost can be started with the pre-defined expected
http requests and their responses.
Located in
LBN
/
…
/
CI/CD
/
BastionLinux 36
-
python3-pytest-httpx-0.18.0-1.fc36.noarch
httpx_mock pytest fixture will make sure every httpx request will be
replied to with user provided responses.
Located in
LBN
/
…
/
CI/CD
/
BastionLinux 36
-
python3-pytest-icdiff-0.9-2.lbn36.noarch
Better diffs in pytest assertion error messages using ICDiff.
Located in
LBN
/
…
/
CI/CD
/
BastionLinux 36
-
python3-pytest-instafail-0.5.0-2.lbn36.noarch
pytest-instafail is a plugin for pytest that shows
failures and errors instantly instead of waiting until the end of test session.
Then run your tests with:
$ pytest --instafail
Located in
LBN
/
…
/
CI/CD
/
BastionLinux 36
-
python3-pytest-integration-0.2.3-1.lbn36.noarch
pytest-integration OverviewPlugin for [pytest]( to mark tests as integration or
slow integration.Integration tests are run after normal tests (unit tests) and
slow integration tests are run after (quick) integration tests.If a unit test
fails, (quick) integration and slow integration tests are not run.If a (quick)
integration tests fails, slow integration tests are not run.If you have also...
Located in
LBN
/
…
/
CI/CD
/
BastionLinux 36
-
python3-pytest-isort-2.0.0-2.fc36.noarch
py.test plugin to check import ordering using isort.
Located in
LBN
/
…
/
CI/CD
/
BastionLinux 36
-
python3-pytest-jupyter+server-0.10.1-1.lbn36.noarch
This is a metapackage bringing in server extras requires for
python3-pytest-jupyter.
It makes sure the dependencies are installed.
Located in
LBN
/
…
/
CI/CD
/
BastionLinux 36
-
python3-pytest-jupyter-0.10.1-1.lbn36.noarch
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.
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_clien
Located in
LBN
/
…
/
CI/CD
/
BastionLinux 36