1 |
# Copyright (c) 2002 by Intevation GmbH |
# Copyright (c) 2002, 2003 by Intevation GmbH |
2 |
# Authors: |
# Authors: |
3 |
# Bernhard Herzog <[email protected]> |
# Bernhard Herzog <[email protected]> |
4 |
# |
# |
22 |
def main(): |
def main(): |
23 |
"""Run all the tests in the Thuban test suite""" |
"""Run all the tests in the Thuban test suite""" |
24 |
|
|
|
Thuban.Lib.connector._the_connector.print_connections() |
|
|
|
|
25 |
files = os.listdir(os.curdir) |
files = os.listdir(os.curdir) |
26 |
names = [] |
names = [] |
27 |
for file in files: |
for file in files: |
32 |
runner = unittest.TextTestRunner(verbosity = 2) |
runner = unittest.TextTestRunner(verbosity = 2) |
33 |
result = runner.run(suite) |
result = runner.run(suite) |
34 |
|
|
35 |
Thuban.Lib.connector._the_connector.print_connections() |
support.print_garbage_information() |
36 |
|
|
37 |
sys.exit(not result.wasSuccessful()) |
sys.exit(not result.wasSuccessful()) |
38 |
|
|