JupyterLab 3.0 and other updates

This commit is contained in:
romainx
2021-01-22 09:36:22 +01:00
parent c42722bb94
commit 92289757d2
5 changed files with 17 additions and 24 deletions

View File

@@ -7,6 +7,7 @@ import pytest
LOGGER = logging.getLogger(__name__)
@pytest.mark.skip(reason="Not yet compliant with JupyterLab 3")
@pytest.mark.parametrize(
"extension",
[
@@ -16,7 +17,13 @@ LOGGER = logging.getLogger(__name__)
],
)
def test_check_extension(container, extension):
"""Basic check of each extension"""
"""Basic check of each extension
The list of extensions can be obtained through this command
$ jupyter labextension list
"""
LOGGER.info(f"Checking the extension: {extension} ...")
c = container.run(
tty=True, command=["start.sh", "jupyter", "labextension", "check", extension]