Files
PyGithub/run_tests.sh
T
Vincent Jacques ab824bf25d Cover custom base url in tests
(we still have to record/replay the protocol, host and port)
2012-07-22 22:43:31 +02:00

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/*