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