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