How to Install and Uninstall python3-pytest-attrib Package on openSUSE Leap

Last updated: May 17,2024

1. Install "python3-pytest-attrib" package

This guide covers the steps necessary to install python3-pytest-attrib on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install python3-pytest-attrib

2. Uninstall "python3-pytest-attrib" package

Please follow the step by step instructions below to uninstall python3-pytest-attrib on openSUSE Leap:

$ sudo zypper remove python3-pytest-attrib

3. Information about the python3-pytest-attrib package on openSUSE Leap

Information for package python3-pytest-attrib:
----------------------------------------------
Repository : Main Repository
Name : python3-pytest-attrib
Version : 0.1.3-bp155.2.47
Arch : noarch
Vendor : openSUSE
Installed Size : 16.0 KiB
Installed : No
Status : not installed
Source package : python-pytest-attrib-0.1.3-bp155.2.47.src
Upstream URL : http://pypi.python.org/pypi/pytest-attrib/
Summary : Pytest plugin to select tests based on attributes
Description :
The pytest-attrib plugin extends py.test with the ability to select tests
based on a criteria rather than just the filename or pytest.marks. For
example, you might want to run only tests that need internet connectivity,
or tests that are slow.
The pytest.mark plugin already provides a featrure to mark tests and run
only the marked tests. This plugin also allows to run expressions on the
attributes of the class, and does not require the pytest.mark decorator.
It offers features similar to the nose plugin nose-attrib.