8000 TEST: added missing doctest: SKIP · larray-project/larray@3faea53 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3faea53

Browse files
committed
TEST: added missing doctest: SKIP
1 parent 574adfe commit 3faea53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

larray/core/array.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7141,7 +7141,7 @@ def to_hdf(self, filepath, key) -> None:
71417141
71427142
Save an array in a specific HDF group
71437143
7144-
>>> a.to_hdf('test.h5', 'arrays/a') # doctest: +SKIP
7144+
>>> a.to_hdf('test.h5', 'arrays/a') # doctest: +SKIP
71457145
"""
71467146
key = _translate_group_key_hdf(key)
71477147
with LHDFStore(filepath) as store:
@@ -7179,7 +7179,7 @@ def to_stata(self, filepath_or_buffer, **kwargs) -> None:
71797179
0 BE F
71807180
1 FR M
71817181
2 FR F
7182-
>>> arr.to_stata('test.dta')
7182+
>>> arr.to_stata('test.dta') # doctest: +SKIP
71837183
"""
71847184
self.to_frame().to_stata(filepath_or_buffer, **kwargs)
71857185

0 commit comments

Comments
 (0)
0