8000 (issue 832): implement CheckedSession, CheckedParameters and CheckedArray by alixdamman · Pull Request #840 · larray-project/larray · GitHub
[go: up one dir, main page]

Skip to content

(issue 832): implement CheckedSession, CheckedParameters and CheckedArray #840

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 6, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
8000 Loading
Diff view
Diff view
Next Next commit
updated test_session.h5 file and test_init_session_hdf() function
  • Loading branch information
alixdamman committed Aug 2, 2021
commit f3921b7ef6f24c9e9acd12ac712b1409cd20952a
Binary file modified larray/tests/data/test_session.h5
Binary file not shown.
2 changes: 1 addition & 1 deletion larray/tests/test_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def test_init_session_xlsx():
@needs_pytables
def test_init_session_hdf():
s = Session(inputpath('test_session.h5'))
assert s.names == ['e', 'f', 'g']
assert s.names == ['a', 'a01', 'a2', 'ano01', 'anonymous', 'b', 'b024', 'e', 'f', 'g', 'h']


def test_getitem(session):
Expand Down
0