jupyter-server / jupyverse

A Jupyter server based on FastAPI :rocket:
https://jupyter-server.github.io/jupyverse
Other
234 stars 28 forks source link

Kernel REST API test fails #270

Open davidbrochart opened 1 year ago

davidbrochart commented 1 year ago

test_rest_api fails on Ubuntu and macOS.

philipppahl commented 1 year ago

@davidbrochart I managed to set up the project on Ubuntu. When trying to run asphalt independently it raised the following error: "LookupError: no such entry point in asphalt.components: resource_usage". Commenting out "resource_usage" in "config.yaml" allowed to run the test successfully. Any advice on how to proceed?

davidbrochart commented 1 year ago

It means that the fps-resource-usage plugin was not installed, so yes removing it from config.yaml is correct. Or you could also install it with pip install fps-resource-usage. The config.yaml is an example so you should modify it according to your needs, if you need to run Asphat independently. If you want to continue this discussion, would you mind opening a new issue?

philipppahl commented 1 year ago

OK, so I guess you can close this issue since all tests are passing on Ubuntu? I haven't tried macOS.