MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / setUp

Method setUp

tensorflow/python/debug/cli/cli_config_test.py:33–37  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

31class CLIConfigTest(test_util.TensorFlowTestCase):
32
33 def setUp(self):
34 self._tmp_dir = tempfile.mkdtemp()
35 self._tmp_config_path = os.path.join(self._tmp_dir, ".tfdbg_config")
36 self.assertFalse(gfile.Exists(self._tmp_config_path))
37 super(CLIConfigTest, self).setUp()
38
39 def tearDown(self):
40 shutil.rmtree(self._tmp_dir)

Callers

nothing calls this directly

Calls 3

mkdtempMethod · 0.80
joinMethod · 0.45
ExistsMethod · 0.45

Tested by

no test coverage detected