mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-01 11:21:16 +00:00
13 lines
193 B
Bash
13 lines
193 B
Bash
#!/bin/sh
|
|
|
|
rm -f $(find . -name "*.pyc")
|
|
|
|
coverage erase
|
|
coverage run NewIntegrationTest.py
|
|
|
|
echo "=============="
|
|
echo "|| Coverage ||"
|
|
echo "=============="
|
|
|
|
coverage report -m --include=./*
|