def setUpClass(cls): time.sleep(1) settings.PROJECT_FS_ROOT = settings.PROJECT_FS_ROOT_TEST settings.DEBUG = True start_eclipse() create_project_local('project1') create_code_local('project1', 'core', '3.0') to_path = get_codebase_path('project1', 'core', '3.0') to_path = os.path.join(to_path, 'src') os.rmdir(to_path) from_path = os.path.join(settings.TESTDATA, 'testproject3', 'src') shutil.copytree(from_path, to_path) link_eclipse('project1', 'core', '3.0')
def setUpClass(cls): time.sleep(1) start_eclipse()
def testEclipse(self): start_eclipse() self.assertTrue(check_eclipse()) stop_eclipse()
def handle_noargs(self, **options): start_eclipse()