How to Install and Uninstall python3-scripttester.noarch Package on Fedora 36

Last updated: June 26,2024

1. Install "python3-scripttester.noarch" package

This tutorial shows how to install python3-scripttester.noarch on Fedora 36

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

2. Uninstall "python3-scripttester.noarch" package

This is a short guide on how to uninstall python3-scripttester.noarch on Fedora 36:

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

3. Information about the python3-scripttester.noarch package on Fedora 36

Last metadata expiration check: 2:46:57 ago on Thu Sep 8 08:04:50 2022.
Available Packages
Name : python3-scripttester
Version : 0.1
Release : 14.fc36
Architecture : noarch
Size : 170 k
Source : python-scripttester-0.1-14.fc36.src.rpm
Repository : fedora
Summary : Utility for testing command line scripts
URL : https://pypi.org/project/scripttester/
License : BSD
Description : Provides a class to be instantiated in tests that checks that scripts
: can be run and give correct output. The class tries to find your
: scripts whether you have installed them or not. If you have not
: installed them, the scripts will not be on your system PATH, and we have
: to find them. The heuristic is to look (by default) in the directory
: containing mymodule; if there is a setup.py file there, and a scripts
: subdirectory, assume that directory contains the scripts.
:
: Note there is no way of using this not-installed mechanism to find
: entrypoint scripts, that have not been installed. To find these, we
: would have to run the setup.py file.