forked from google/gae-secure-scaffold-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_tests.py
executable file
·36 lines (30 loc) · 1.07 KB
/
run_tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/python
import optparse
import sys
import unittest2
USAGE = """%prog SDK_PATH TEST_PATH <THIRD_PARTY>
Run unit tests for App Engine apps.
SDK_PATH Path to the SDK installation
TEST_PATH Path to package containing test modules
THIRD_PARTY Optional path to third party python modules to include."""
def main(sdk_path, test_path, third_party_path=None):
sys.path.insert(0, sdk_path)
import dev_appserver
dev_appserver.fix_sys_path()
if third_party_path:
sys.path.insert(0, third_party_path)
suite = unittest2.loader.TestLoader().discover(test_path,
pattern='*_test.py')
unittest2.TextTestRunner(verbosity=2).run(suite)
if __name__ == '__main__':
sys.dont_write_bytecode = True
parser = optparse.OptionParser(USAGE)
options, args = parser.parse_args()
if len(args) < 2:
print 'Error: At least 2 arguments required.'
parser.print_help()
sys.exit(1)
SDK_PATH = args[0]
TEST_PATH = args[1]
THIRD_PARTY_PATH = args[2] if len(args) > 2 else None
main(SDK_PATH, TEST_PATH, THIRD_PARTY_PATH)