mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-01 19:31:10 +00:00
14 lines
178 B
Bash
14 lines
178 B
Bash
#!/bin/sh
|
|
|
|
rm -f $(find -name "*.pyc")
|
|
|
|
coverage erase
|
|
|
|
for f in $(find -name "*Test.py")
|
|
do
|
|
coverage run --append $f --quiet
|
|
echo
|
|
done
|
|
|
|
coverage report -m --include=./*
|