-
Notifications
You must be signed in to change notification settings - Fork 10
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
Fix bug issue #175 #176
Fix bug issue #175 #176
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #176 +/- ##
==========================================
+ Coverage 71.90% 73.68% +1.78%
==========================================
Files 22 22
Lines 1178 1178
==========================================
+ Hits 847 868 +21
+ Misses 331 310 -21 ☔ View full report in Codecov by Sentry. |
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 @christian-oreilly ! 🙏 🚀
Co-authored-by: Scott Huberty <[email protected]>
Co-authored-by: Scott Huberty <[email protected]>
Co-authored-by: Scott Huberty <[email protected]>
bids_root=tmp_path / "bids_dataset", | ||
overwrite=True | ||
) | ||
shutil.rmtree(tmp_path / "bids_dataset") |
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.
FYI the shutil.rmtree
isn't actually necessary because tmp_path
is a magic pytest
fixture and will tear down the temporary directory for you 🙂
Thanks @christian-oreilly ! |
Closes #175