-
Notifications
You must be signed in to change notification settings - Fork 18
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
Support legacy notebook launcher #48
Conversation
jupyterlab_pullrequests/__init__.py
Outdated
config = PRConfig(config=server_app.config) | ||
setup_handlers(server_app.web_app, config) | ||
setup_handlers(server_app, config) |
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.
i don't think this is ready for that yet!
|
||
# for legacy launching with notebok (e.g. Binder) | ||
_jupyter_server_extension_paths = _jupyter_server_extension_points | ||
load_jupyter_server_extension = _load_jupyter_server_extension |
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 start, there's also the json files that need to be deployed? or maybe we already do that...
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.
The JSON files were already well set. But this backport was missing
Codecov Report
@@ Coverage Diff @@
## master #48 +/- ##
=========================================
Coverage ? 61.02%
=========================================
Files ? 34
Lines ? 1647
Branches ? 94
=========================================
Hits ? 1005
Misses ? 637
Partials ? 5
Continue to review full report at Codecov.
|
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.
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.
Thank you for fixing this one @bollwyvl
|
||
# for legacy launching with notebok (e.g. Binder) | ||
_jupyter_server_extension_paths = _jupyter_server_extension_points | ||
load_jupyter_server_extension = _load_jupyter_server_extension |
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.
The JSON files were already well set. But this backport was missing
Cool thanks for cleaning up some of the unbundling. When next I get a
chance I'll merge into #44 and see what's still hanging out, maybe it can
actually land with the anonymous provider... Someday!
|
Extracted from #44