-
Notifications
You must be signed in to change notification settings - Fork 25
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
maint: modifying files to conform with "PTH" ruff rule #1949
Conversation
9cf6bfe
to
6401495
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1949 +/- ##
==========================================
+ Coverage 88.33% 88.35% +0.01%
==========================================
Files 89 89
Lines 10225 10242 +17
==========================================
+ Hits 9032 9049 +17
Misses 1193 1193 |
8fbf4c5
to
9e18458
Compare
Now all changes so far are passing the tests. |
1360f72
to
f4f38f9
Compare
880c247
to
76935b8
Compare
d150fc9
to
0cb5abb
Compare
c0f75e7
to
fcd1845
Compare
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.
Thanks for such a big contribution, @moe-ad. This helps a lot with code quality and makes the project more robust.
Thank you too @jorgepiloto . |
plugin_path = examples.download_gltf_plugin() | ||
folder_root = os.path.join(os.getcwd().rsplit("pydpf-core", 1)[0], "pydpf-core") | ||
plugin_path = Path(examples.download_gltf_plugin()) | ||
folder_root = Path(__file__).parent.parent.parent |
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.
This line is the one making the CI/CD to fail. I think the problem is that, this is converted to a notebook by Sphinx gallery and thus, the variable __file__
is no longer present, @moe-ad
7449aff
to
f4c136b
Compare
This PR is associated with #296. Flake9-use-pathlib ruff rule will be addressed via this PR.