runall.py
Go to the documentation of this file.00001
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
00010
00011
00012
00013 import templatetestdir
00014 import codeformatting
00015
00016 import sfc_callbacks
00017
00018 def test(verbosity=0):
00019 templatetestdir.test(verbosity)
00020 codeformatting.test(verbosity)
00021
00022 sfc_callbacks.test(verbosity)
00023
00024 if __name__ == "__main__":
00025 test()
00026