def tearDownClass(cls):
     project = Project('structure_testing')
     ham = project.load(1)
     ham.remove()
     project.remove(enable=True)
     s.close_connection()
     os.remove('container.db')
Exemple #2
0
 def tearDownClass(cls):
     project = Project(
         os.path.join(os.path.dirname(os.path.abspath(__file__)),
                      'random_testing'))
     ham = project.load(project.get_job_ids()[0])
     ham.remove()
     project.remove(enable=True)
Exemple #3
0
 def tearDownClass(cls):
     cls.execution_path = os.path.dirname(os.path.abspath(__file__))
     project = Project(os.path.join(cls.execution_path, "table"))
     project.remove_jobs(recursive=True)
     project.remove(enable=True)
 def tearDownClass(cls):
     file_location = os.path.dirname(os.path.abspath(__file__))
     project = Project(os.path.join(file_location, "testing_serial_non_modal"))
     project.remove(enable=True, enforce=True)
Exemple #5
0
 def tearDownClass(cls):
     cls.file_location = os.path.dirname(os.path.abspath(__file__))
     project = Project(os.path.join(cls.file_location, "vasp_import_testing"))
     project.remove_jobs_silently(recursive=True)
     project.remove(enable=True)
 def tearDownClass(cls):
     project = Project('testing_murnaghan_non_modal')
     project.remove_jobs(recursive=True)
     project.remove(enable=True, enforce=True)
Exemple #7
0
 def tearDownClass(cls):
     cls.file_location = os.path.dirname(os.path.abspath(__file__))
     project = Project(os.path.join(cls.file_location, 'testing_murnaghan'))
     project.remove(enable=True, enforce=True)
 def tearDownClass(cls):
     file_location = os.path.dirname(os.path.abspath(__file__))
     project = Project(os.path.join(file_location, 'structure_testing'))
     ham = project.load(project.get_job_ids()[0])
     ham.remove()
     project.remove(enable=True)
 def tearDownClass(cls):
     # print('tear down')
     file_location = os.path.dirname(os.path.abspath(__file__))
     project = Project(os.path.join(file_location, 'random_testing_non_modal'))
     project.remove_jobs()
     project.remove(enable=True)
 def tearDownClass(cls):
     project = Project('testing_murnaghan')
     project.remove(enable=True, enforce=True)
     s.close_connection()
     if os.path.isfile('../murnaghan.db'):
         project.remove_file('../murnaghan.db')
Exemple #11
0
 def tearDownClass(cls):
     file_location = os.path.dirname(os.path.abspath(__file__))
     project = Project(os.path.join(file_location, 'testing_serial'))
     project.remove(enable=True)
Exemple #12
0
 def tearDownClass(cls):
     file_location = os.path.dirname(os.path.abspath(__file__))
     project = Project(
         os.path.join(file_location, 'testing_murnaghan_non_modal'))
     project.remove_jobs(recursive=True)
     project.remove(enable=True, enforce=True)