You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage zuul-migrate-12.0.0-1.lbn36.noarch
Migrate zuul v2 and Jenkins Job Builder to Zuul v3
RPMPackage zuul-merger-12.0.0-1.lbn36.noarch
Scale-out component that performs git merge operations. Zuul performs a large number of git operations in the course of its work. Adding merger processes can help speed Zuul’s processing. This component is optional (zero or more of these can be run).
RPMPackage zuul-fingergw-12.0.0-1.lbn36.noarch
A gateway which provides finger protocol access to live streaming of logs.
RPMPackage zuul-executor-12.0.0-1.lbn36.noarch
Scale-out component for executing jobs. At least one of these is required. Depending on system configuration, you can expect a single executor to handle up to about 100 simultaneous jobs. Can handle the functions of a merger if dedicated mergers are not provided. One or more of these must be run.
RPMPackage zuul-12.0.0-1.lbn36.noarch
Zuul is a program that drives continuous integration, delivery, and deployment systems with a focus on project gating and interrelated projects.
RPMPackage nodepool-launcher-11.0.0-1.lbn36.noarch
Nodepool launcher service.
RPMPackage nodepool-builder-11.0.0-1.lbn36.noarch
Nodepool builder service.
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.