python-coverage
code coverage tool for Python 2
Install
- All systems
-
curl cmd.cat/python-coverage.sh
- Debian
-
apt-get install python-coverage
- Ubuntu
-
apt-get install python-coverage
- Arch Linux
-
pacman -S python-coverage
- Kali Linux
-
apt-get install python-coverage
- CentOS
-
yum install python-coverage
- Fedora
-
dnf install python-coverage
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install python-coverage
- Raspbian
-
apt-get install python-coverage
- Dockerfile
- dockerfile.run/python-coverage
python-coverage
code coverage tool for Python 2
Coverage.py is a tool for measuring code coverage of Python programs. It monitors your program, noting which parts of the code have been executed, then analyzes the source to identify code that could have been executed but was not. Coverage measurement is typically used to gauge the effectiveness of tests. It can show which parts of your code are being exercised by tests, and which are not. This package installs the Python version 2 ‘coverage’ library, and the ‘python2-coverage’ program to perform and report coverage tests.