You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
555 B
29 lines
555 B
12 years ago
|
#!/usr/bin/env python
|
||
|
#encoding:utf-8
|
||
|
#author:dbr/Ben
|
||
|
#project:tvdb_api
|
||
|
#repository:http://github.com/dbr/tvdb_api
|
||
|
#license:unlicense (http://unlicense.org/)
|
||
|
|
||
|
import sys
|
||
|
import unittest
|
||
|
|
||
|
import test_tvdb_api
|
||
|
|
||
|
def main():
|
||
|
suite = unittest.TestSuite([
|
||
|
unittest.TestLoader().loadTestsFromModule(test_tvdb_api)
|
||
|
])
|
||
|
|
||
|
runner = unittest.TextTestRunner(verbosity=2)
|
||
|
result = runner.run(suite)
|
||
|
if result.wasSuccessful():
|
||
|
return 0
|
||
|
else:
|
||
|
return 1
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
sys.exit(
|
||
|
int(main())
|
||
|
)
|