mirror of
https://github.com/status-im/PyGithub.git
synced 2026-09-01 03:11:09 +00:00
17 lines
301 B
Bash
Executable File
17 lines
301 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -f $(find . -name "*.pyc")
|
|
|
|
cd test
|
|
|
|
coverage erase
|
|
coverage run --branch IntegrationTest.py
|
|
|
|
echo "=============================="
|
|
echo "|| Coverage (shall be 100%) ||"
|
|
echo "=============================="
|
|
|
|
coverage report -m --include=../github/*
|
|
|
|
coverage html --include=../github/*
|