You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage nodepool-11.0.0-1.lbn36.noarch
Nodepool is a service used by the OpenStack CI team to deploy and manage a pool of devstack images on a cloud server for use in OpenStack project testing.
RPMPackage python3-pytest-xdist+setproctitle-3.6.1-5.lbn36.noarch
This is a metapackage bringing in setproctitle extras requires for python3-pytest-xdist. It makes sure the dependencies are installed.
RPMPackage python3-pytest-xdist+psutil-3.6.1-5.lbn36.noarch
This is a metapackage bringing in psutil extras requires for python3-pytest-xdist. It makes sure the dependencies are installed.
RPMPackage python3-pytest-split-0.10.0-3.lbn36.noarch
Pytest plugin which splits the test suite to equally sized sub suites based on test execution time.
RPMPackage python3-pytest-socket-0.7.0-1.lbn36.noarch
pytest-socket A plugin to use with Pytest to disable or restrict socket calls during tests to ensure network calls are prevented. Features Disables all network calls flowing through Python's socket interface. Requirements Pytest 6.2.5 or greater Installation You can install pytest-socket via pip from PyPI: pip install pytest-socket or add to your pyproject.toml for poetry: [tool.poetry.dev-dependencies] pytest-socket = "*" Usage Run pytest --disable-socket, tests should fail on any access to socket or libraries using socket with a SocketBlockedError. To add this flag as the default behavior, add this section to your pytest.ini: [pytest] addopts = --disable-socket or add this to your setup.cfg: [tool:pytest] addopts = --disable-socket or update your conftest.py to include: from pytest_socket import disable_socket def pytest_runtest_setup(): disable_socket() If you exceptionally want to enable socket for one particular execution pass --force-enable-socket. It takes
RPMPackage python3-pytest-snapshot-0.9.0-1.lbn36.noarch
pytest-snapshot :alt: Coverage
RPMPackage python3-pytest-relaxed-2.0.2-4.lbn36.noarch
This package provides relaxed test discovery for pytest. It is the spiritual successor to python3-spec, but is built for pytest instead of nosetests, and rethinks some aspects of the design (such as increased ability to opt-in to various behaviors).
RPMPackage python3-pytest-plone-0.5.0-1.lbn36.noarch
pytest-plone is a pytest plugin providing fixtures and helpers to test Plone add-ons. This package is built on top of zope.pytestlayer. Reasoning Despite the fact Plone, and Zope, have their codebases tested with unittest, over the years pytest became the most popular choice for testing in Python. pytest is more flexible and easier to use than unittest and has a rich ecosystem of plugins that you can use to extend its functionality.
RPMPackage python3-pytest-mpi-0.5-4.fc36.noarch
pytest_mpi is a plugin for pytest providing some useful tools when running tests under MPI, and testing MPI-related code.
RPMPackage 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.
RPMPackage 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
RPMPackage 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
RPMPackage python3-pytest-icdiff-0.9-2.lbn36.noarch
Better diffs in pytest assertion error messages using ICDiff.
RPMPackage python3-pytest-freezer-0.4.8-1.lbn36.noarch
Pytest plugin providing a fixture interface for freezegun.
RPMPackage python3-pytest-custom-exit-code-0.3.0-2.lbn36.noarch
Exit pytest test session with custom exit code in different scenarios Usage pytest --suppress-no-test-exit-code pytest --suppress-tests-failed-exit-code
RPMPackage python3-pytest-cookies-0.7.0-1.lbn36.noarch
pytest-cookies[pytest][pytest] is a mature testing framework for Python that is developed by a thriving and ever-growing community of volunteers. It uses plain assert statements and regular Python comparisons. At the core of the pytest test framework is a powerful hook-based plugin system.**pytest-cookies** is a pytest plugin that comes with a cookies fixture which is a wrapper for the...
RPMPackage python3-pytest-console-scripts-1.4.1-1.lbn36.noarch
pytest-console-scripts [![PyPI]( [![PyPI - License]( [![GitHub Workflow Status]( [![codecov](
RPMPackage python3-sphinx-pytest-0.1.1-1.lbn36.noarch
Helpful pytest fixtures for sphinx extensions. This extension provides pytest fixtures to "simulate" converting some source text to docutils AST at different stages; before transforms, after transforms, etc.
RPMPackage python3-pytest-xvfb-2.0.0-4.fc36.noarch
With Xvfb and the plugin installed, your testsuite automatically runs with Xvfb. This allows tests to be run without windows popping up during GUI tests or on systems without a display (like a CI). If Xvfb is not installed, the plugin does not run and your tests will still work as normal. However, a warning message will print to standard output letting you know that Xvfb is not installed. If you're currently using xvfb-run in something like .travis.yml, simply remove it and install this plugin instead - then you'll also have the benefits of Xvfb locally.
RPMPackage python3-pytest-xprocess-0.18.1-2.fc36.noarch
Experimental py.test <>_ plugin for managing processes across test runs.Usage install via:: pip install pytest-xprocessThis will provide a xprocess fixture which helps you to ensure that one ore more longer-running processes are present for your tests. You can use it to start and pre-configure test-specific databases (Postgres, Couchdb, ...).Additionally there are two new command line...