-
Notifications
You must be signed in to change notification settings - Fork 745
Pathlib object handling for Universe, SingleFrameReaderBase and Toplogy parsers (Issue #3937) #4535
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
Open
talagayev
wants to merge
45
commits into
MDAnalysis:develop
Choose a base branch
from
talagayev:singleframereader_pathlib
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
0dbca13
addition of tests for str and pathlib handling of SingleFrameReaderBa…
talagayev c2c7c2c
renamed tests to specify GRO input as testcase
talagayev 05ea8de
Added testcase of LAMMPS str and pathlib handling in class SingleFram…
talagayev 5c0383c
Update AUTHORS list
talagayev 9a4932b
Update CHANGELOG
talagayev ff2a832
Adjusting blank lines for PEP8
talagayev d85defc
adjsuting blank lines for PEP8
talagayev 87f7a95
removed singleframereader test in test_gro.py
talagayev 27e9685
removed singleframe_reader test in test_lammps.py
talagayev 567e6ef
added test for str and path input for singleframereader in base.py
talagayev 5558dda
Added Baseframe test for singleframes str and path input in base.py
talagayev 2953310
Merge pull request #2 from talagayev/talagayev-patch-1_singleframe
talagayev c181021
Merge branch 'develop' into singleframereader_pathlib
talagayev e06ae55
add pathlib checking to topology and universe
hmacdope 0aa40cc
add test for topology Pathlib and fix changelog
hmacdope 5dafd01
fix spacing chaneg in AUTHORS
hmacdope 33d6b4e
Merge branch 'develop' into singleframereader_pathlib
orbeckst f785eea
Merge branch 'develop' into singleframereader_pathlib
orbeckst 5d0dfe2
Merge branch 'develop' into singleframereader_pathlib
talagayev bd2c347
Update base.py
talagayev 33280ee
Merge branch 'develop' into singleframereader_pathlib
talagayev beea20b
Update base.py
talagayev 677eb36
Update base.py
talagayev 95e5ff6
Update base.py
talagayev aab41b3
Update base.py
talagayev 09787eb
Update base.py
talagayev b8a2f03
Update base.py
talagayev 02375bd
Update base.py
talagayev 644a6f2
Update base.py
talagayev d821dfd
Update base.py
talagayev d0a7c16
Update base.py
talagayev 7c734a3
fix topology error and adjust style
talagayev e5bb67d
added itp folder recognition and additional asserts
talagayev cb41888
Update base.py
talagayev af86339
black formatting
talagayev 27acebe
Merge branch 'singleframereader_pathlib' of https://github.com/talaga…
talagayev ac7bcc7
Update CHANGELOG
talagayev 6d181ac
Update test_imd.py
talagayev fe96f36
Update base.py
talagayev af0ea55
Update base.py
talagayev df58b43
Update test_imd.py
talagayev 10fa0ec
Update test_imd.py
talagayev 1fa4d16
Update base.py
talagayev 54cbf7a
black formatting
talagayev a2efb86
Merge branch 'develop' into singleframereader_pathlib
talagayev 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,7 +48,6 @@ | |
| assert_equal, | ||
| ) | ||
| import pytest | ||
| from io import StringIO | ||
|
|
||
|
|
||
| class TestGROReaderOld(RefAdK): | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
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.
Here adding an additional Line:
path = path.as_posix())Fixes the following Failed Pytest in 4 cases:
AttributeError: 'PosixPath' object has no attribute 'encode'