-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Added API import_parts_to_avl() #617
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
base: main
Are you sure you want to change the base?
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #617 +/- ##
==========================================
- Coverage 61.36% 61.34% -0.03%
==========================================
Files 22 22
Lines 5700 5725 +25
==========================================
+ Hits 3498 3512 +14
- Misses 2202 2213 +11 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
c985adb
to
df97627
Compare
|
||
Examples | ||
-------- | ||
>>> from ansys.sherlock.core.types.project_types import ImportPartsToAVLRequest |
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.
ImportPartsToAVLRequest
is defined in parts_types.py, not project_types.py.
"""Import mode to use for AVL data.""" | ||
|
||
"""Allow non-standard types like Protobuf enums in Pydantic models.""" | ||
model_config = {"arbitrary_types_allowed": True} |
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.
model_config
isn't used.
Description
Added API import_parts_to_avl()
Issue linked
#390
Checklist:
- Run tests without Sherlock running
- Run tests with Sherlock GRPC connection
- pre-commit command line check
- Problems tab in PyCharm
- Open index.html
- Click on "API Reference" at the top.
- Verify HTML for API changes.
feat: adding new PySherlock command
)