-
Notifications
You must be signed in to change notification settings - Fork 174
Orca V2 aonames #1702
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
Orca V2 aonames #1702
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1702 +/- ##
==========================================
- Coverage 12.68% 12.65% -0.04%
==========================================
Files 111 111
Lines 17069 17080 +11
==========================================
- Hits 2165 2161 -4
- Misses 14904 14919 +15 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
Hmmmm |
|
Ah ok I was checking the main tests not regression |
cclib/attribute_parsers/aonames.py
Outdated
| if len(parts) > 1: | ||
| if i > 0: | ||
| this_atombasis.append(basisonatom) # noqa: F821 | ||
| this_aonames.append(basisonatom) # noqa: F821 |
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.
I think you can get rid of the noqa now that this_aonames is returned
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.
done
| """ | ||
|
|
||
| known_codes = ["gaussian"] | ||
| known_codes = ["gaussian", "ORCA"] |
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.
Fine for now but I'm not sure what we should do about case here; I supposed it depends on how it's called by users or us, but haven't thought about it much
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.
true right now this is only touched by devs and isn't user facing. This could change. Also there isnt an easy way to inject a known code for a user created parser.
It was more of a "oh you're right"; ideally there would be some that aren't in regressions. |
aonamesfor the orca v2 parser. Also areaonamesnot tested?