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

Last updated: May 03,2024

1. Install "python3-pytest-reorder" package

Learn how to install python3-pytest-reorder on openSUSE Leap

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

2. Uninstall "python3-pytest-reorder" package

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

$ sudo zypper remove python3-pytest-reorder

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

Information for package python3-pytest-reorder:
-----------------------------------------------
Repository : Main Repository
Name : python3-pytest-reorder
Version : 0.1.1-bp155.2.9
Arch : noarch
Vendor : openSUSE
Installed Size : 25.3 KiB
Installed : No
Status : not installed
Source package : python-pytest-reorder-0.1.1-bp155.2.9.src
Upstream URL : https://github.com/not-raspberry/pytest_reorder
Summary : Pytest plugin for reordering tests depending on their paths and names
Description :
Reorder tests depending on their nodeids (strings of test file path plus test name plus
parametrization, like:
``test/test_prefix_reordering.py::test_reordering_default[test_names5-expected_test_order5]``).
Normally tests are sorted alphabetically. That makes integration tests run before unit tests.
With **pytest_reorder** you can install a hook that will change the order of tests in the suite.
By default **pytest_reorder** will seek for *unit*, *integration* and *ui* tests and put them in
the following order:
* *unit*
* all tests with names not indicating unit, integration, nor UI tests
* *integration*
* *ui*
The default regular expressions can find unit, integration and UI tests both laid flat and **deeply
nested**. You can also specify your custom order.