Skip to content
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

Add gdb format molecule reading #291

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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.
Loading
Diff view
Diff view
Prev Previous commit
format
  • Loading branch information
loriab committed Jun 13, 2022
commit 829dd4477766d262d7a960894db13d1ca64fcabe
12 changes: 7 additions & 5 deletions qcelemental/tests/test_molparse_from_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -1011,12 +1011,14 @@ def test_xyz_gdb_error(string, err):

assert err in str(e.value)


@pytest.mark.parametrize(
"dtype", [
None,
"xyz",
"xyz+",
]
"dtype",
[
None,
"xyz",
"xyz+",
],
)
def test_xyz_fields_error(dtype):

Expand Down