##// END OF EJS Templates
Merge pull request #13181 from haobibo/master...
Matthias Bussonnier -
r26869:4e5c2e24 merge
parent child Browse files
Show More
@@ -160,6 +160,10 b' def test_get_ipython_dir_7():'
160 160 @skip_win32
161 161 def test_get_ipython_dir_8():
162 162 """test_get_ipython_dir_8, test / home directory"""
163 if not os.access("/", os.W_OK):
164 # test only when HOME directory actually writable
165 return
166
163 167 with patch.object(paths, '_writable_dir', lambda path: bool(path)), \
164 168 patch.object(paths, 'get_xdg_dir', return_value=None), \
165 169 modified_env({
@@ -71,6 +71,8 b' def get_ipython_dir() -> str:'
71 71 warn("IPython parent '{0}' is not a writable location,"
72 72 " using a temp directory.".format(parent))
73 73 ipdir = tempfile.mkdtemp()
74 else:
75 os.makedirs(ipdir)
74 76 assert isinstance(ipdir, str), "all path manipulation should be str(unicode), but are not."
75 77 return ipdir
76 78
General Comments 0
You need to be logged in to leave comments. Login now