How to Install and Uninstall python3-subunit.noarch Package on Red Hat Enterprise Linux 8 (RHEL 8)

Last updated: June 29,2024

1. Install "python3-subunit.noarch" package

This is a short guide on how to install python3-subunit.noarch on Red Hat Enterprise Linux 8 (RHEL 8)

$ sudo dnf update $ sudo dnf install python3-subunit.noarch

2. Uninstall "python3-subunit.noarch" package

Please follow the guidance below to uninstall python3-subunit.noarch on Red Hat Enterprise Linux 8 (RHEL 8):

$ sudo dnf remove python3-subunit.noarch $ sudo dnf autoremove

3. Information about the python3-subunit.noarch package on Red Hat Enterprise Linux 8 (RHEL 8)

Last metadata expiration check: 0:03:45 ago on Mon Feb 26 15:59:38 2024.
Available Packages
Name : python3-subunit
Version : 1.4.0
Release : 14.el8
Architecture : noarch
Size : 98 k
Source : subunit-1.4.0-14.el8.src.rpm
Repository : epel
Summary : Streaming protocol for test results
URL : https://launchpad.net/subunit
License : ASL 2.0 or BSD
Description : Subunit is a streaming protocol for test results. The protocol is a
: binary encoding that is easily generated and parsed. By design all the
: components of the protocol conceptually fit into the xUnit TestCase ->
: TestResult interaction.
:
: Subunit comes with command line filters to process a subunit stream and
: language bindings for python, C, C++ and shell. Bindings are easy to
: write for other languages.
:
: A number of useful things can be done easily with subunit:
: - Test aggregation: Tests run separately can be combined and then
: reported/displayed together. For instance, tests from different
: languages can be shown as a seamless whole.
: - Test archiving: A test run may be recorded and replayed later.
: - Test isolation: Tests that may crash or otherwise interact badly with
: each other can be run separately and then aggregated, rather than
: interfering with each other.
: - Grid testing: subunit can act as the necessary serialization and
: deserialization to get test runs on distributed machines to be
: reported in real time.