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.
 
 
 

15 lines
321 B

  1. #!/usr/bin/env python
  2. import unittest, tarfile, os, ConfigParser
  3. import test_t1
  4. CONFIG_FILE = 'config.py'
  5. def main():
  6. config = ConfigParser.ConfigParser()
  7. config.read(CONFIG_FILE)
  8. test_t1.CONFIG = config
  9. unittest.TestProgram(defaultTest='test_t1.makeNetworkSuite')
  10. if __name__ == "__main__" : main()