-
Notifications
You must be signed in to change notification settings - Fork 121
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
Math module file uploader #944
Conversation
Codecov Report
@@ Coverage Diff @@
## main #944 +/- ##
==========================================
- Coverage 72.79% 72.75% -0.05%
==========================================
Files 39 39
Lines 5675 5703 +28
==========================================
+ Hits 4131 4149 +18
- Misses 1544 1554 +10 |
…ly made of double float. Adding also mat_id check.
@@ -159,7 +159,7 @@ Next, connect to the instance of MAPDL from python with: | |||
|
|||
>>> from ansys.mapdl.core import Mapdl | |||
>>> ip = '127.0.0.1' | |||
>>> mapdl = Mapdl(ip=ip, port=50052, request_instance=False) | |||
>>> mapdl = Mapdl(ip=ip, port=50052, start_instance=False) |
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.
Good catch!
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.
It wasn't me, it was @koubaa who told me. It seems that parameter is quite common in some private repositories I'm not in.
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.
Approved. Only one follow-up.
Closes #930 by adding function to automatically upload files to MAPDL instance working directory.