-
Notifications
You must be signed in to change notification settings - Fork 12
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
Allow db_path to be set to ":memory:" #70
Conversation
Thanks for submitting your first pull request! You are awesome! 🤗 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #70 +/- ##
==========================================
+ Coverage 85.49% 85.84% +0.34%
==========================================
Files 5 5
Lines 531 530 -1
Branches 68 67 -1
==========================================
+ Hits 454 455 +1
+ Misses 55 54 -1
+ Partials 22 21 -1 ☔ View full report in Codecov by Sentry. |
This is great, thank you @cmd-ntrf. Ideally, we have a unit test to cover this config option to make sure we don't accidentally remove it in the future. Would you like to create such a unit test? Otherwise, I can take over this PR, write such a test, and merge. |
I have added a unit test. Let me know if there is anything else I can do. |
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.
@cmd-ntrf Thank you for this contribution! So sorry I let this one escape my review. In the future, please feel free to ping me directly for feedback.
I left a few suggestions for you below. The CI failure is actually coming from our linter system called pre-commit
. After you address the feedback I've left below, you should run (in your dev environment):
pip install pre-commit
pre-commit run --all-files
git commit -am "pre-commit"
git push ...
Oh, forgot to mention: there actually is another CI failure not coming from pre-commit. I fixed this in #73, which I just merged. You'll want to rebase on
|
I have rebased on main, applied the proposed changes and squashed into a single commit. |
Thanks @cmd-ntrf! |
This change released today: https://github.com/jupyter-server/jupyter_server_fileid/releases/tag/v0.9.1 Thanks @cmd-ntrf! |
@Zsailer Thanks for merging & releasing this PR while I was away for vacation! 🎉 |
Fix issue #69