-
Notifications
You must be signed in to change notification settings - Fork 36
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
Fix project data interface and add unittests for job and project data interfaces #278
Merged
Merged
Changes from 21 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
dd172f2
Fix issue 274 with project.data.
bdice fe90065
Added test for numpy arrays project.data
klywang 057101b
Inherited h5store to test_project.
klywang e6a2786
Diamond nest tests
klywang 2526d4c
Merge branch 'master' into fix/project-data-interface
bdice af1093c
Merge branch 'master' into fix/project-data-interface
bdice 2c9b28f
Added kwargs. Get open errors. Without open, no errors but can't take…
klywang d0d33a4
Merge branch 'master' into fix/project-data-interface
klywang a917ddf
Added project interface tests with variable.
klywang 0b09ab0
Forgot Store in base class
klywang 1f2d98e
Add open for other arguments.
klywang 661296e
unittest left over.
klywang de77476
Corrected test inheritance.
klywang 03624b6
Add kwargs to Project init. Tests fail otherwise.
klywang 69762e6
h5storemanager takes arguments without explicitly opening file to pre…
klywang 43aa19a
removed line.
klywang dff3b73
Undid kwargs thing.
klywang e49d4e8
Added arguments to open h5store
klywang 8601639
Merge branch 'master' into fix/project-data-interface
klywang f35bba0
Pass failing tests. Meant to open multiple instances of H5Store object.
klywang 2373274
Message about why tests are passed.
klywang e85d431
Merge remote-tracking branch 'origin/master' into fix/project-data-in…
bdice f043336
Update changelog.
bdice db798db
Update tests/test_project.py
klywang df26044
Update tests/test_project.py
klywang df20250
Merge branch 'master' into fix/project-data-interface
zhou-pj File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a minor questions and not directly introduced by this PR, but I noticed a few functions with the @pytest.fixture that are using a mixture of camelCase and underscore for function name. Is there a reason for that?