diff --git a/github/GithubObject.UnitTest.py b/github/GithubObject.UnitTest.py new file mode 100644 index 00000000..c0ea95bd --- /dev/null +++ b/github/GithubObject.UnitTest.py @@ -0,0 +1,5 @@ +import unittest + +from GithubObject import GithubObject + +unittest.main() diff --git a/github/GithubObject.py b/github/GithubObject.py new file mode 100644 index 00000000..b28b9a6b --- /dev/null +++ b/github/GithubObject.py @@ -0,0 +1,2 @@ +def GithubObject( *attributes ): + pass diff --git a/run_tests.sh b/run_tests.sh index a6a4f980..e94ac256 100644 --- a/run_tests.sh +++ b/run_tests.sh @@ -4,7 +4,7 @@ rm -f $(find -name "*.pyc") coverage erase -for f in *Test.py +for f in $(find -name "*Test.py") do coverage run --append $f --quiet echo