(self)
| 15 | class PluginTest(unittest.TestCase): |
| 16 | |
| 17 | def setUp(self): |
| 18 | self.plugins_root = 'tests/utils/plugins/' |
| 19 | self.tmp_dir = tempfile.TemporaryDirectory().name |
| 20 | if not os.path.exists(self.tmp_dir): |
| 21 | os.makedirs(self.tmp_dir) |
| 22 | self.package = 'adaseq' |
| 23 | self.plugins_manager = PluginsManager() |
| 24 | |
| 25 | def tearDown(self): |
| 26 | shutil.rmtree(self.tmp_dir) |
nothing calls this directly
no test coverage detected