(self)
| 83 | |
| 84 | @unittest.skip |
| 85 | def test_install_plugins_with_git(self): |
| 86 | |
| 87 | install_args = ['git+https://github.com/modelscope/AdaSeq.git'] |
| 88 | status_code, install_args = self.plugins_manager.install_plugins( |
| 89 | install_args) |
| 90 | self.assertEqual(status_code, 0) |
| 91 | |
| 92 | # move this from tear down to avoid unexpected uninstall |
| 93 | uninstall_args = ['git+https://github.com/modelscope/AdaSeq.git', '-y'] |
| 94 | self.plugins_manager.uninstall_plugins(uninstall_args) |
| 95 | |
| 96 | def test_uninstall_plugins(self): |
| 97 | """ |
nothing calls this directly
no test coverage detected