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