(self)
| 73 | # ----------------------------------------------------------------------------- |
| 74 | class ProfileStartupTest(TestCase): |
| 75 | def setUp(self): |
| 76 | # create profile dir |
| 77 | self.pd = ProfileDir.create_profile_dir_by_name(IP_TEST_DIR, "test") |
| 78 | self.options = ["--ipython-dir", IP_TEST_DIR, "--profile", "test"] |
| 79 | self.fname = TMP_TEST_DIR / "test.py" |
| 80 | |
| 81 | def tearDown(self): |
| 82 | # We must remove this profile right away so its presence doesn't |
nothing calls this directly
no test coverage detected