SyFi 0.3
|
00001 #!/usr/bin/env python 00002 """ 00003 Intention: Import and run a comprehensive default set of tests. 00004 00005 Problem: Tests may depend on the global state of the python modules SyFi and sfc, 00006 in which case they should be called from the runall.sh script instead. 00007 """ 00008 00009 # TODO: to include more tests, add them to 00010 # 1) the import list below 00011 # 2) the call list in test() below 00012 00013 import templatetestdir 00014 import codeformatting 00015 #import misc 00016 import sfc_callbacks 00017 00018 def test(verbosity=0): 00019 templatetestdir.test(verbosity) 00020 codeformatting.test(verbosity) 00021 #misc.test(verbosity) 00022 sfc_callbacks.test(verbosity) 00023 00024 if __name__ == "__main__": 00025 test() 00026