mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-15 22:12:57 +00:00
Fix style
This commit is contained in:
@@ -10,7 +10,8 @@ def test_inkscape(container):
|
|||||||
"""Inkscape shall be installed to be able to convert SVG files."""
|
"""Inkscape shall be installed to be able to convert SVG files."""
|
||||||
LOGGER.info("Test that inkscape is working by printing its version ...")
|
LOGGER.info("Test that inkscape is working by printing its version ...")
|
||||||
c = container.run(
|
c = container.run(
|
||||||
tty=True, command=["start.sh", "bash", "-c", "inkscape --version"]
|
tty=True,
|
||||||
|
command=["start.sh", "bash", "-c", "inkscape --version"]
|
||||||
)
|
)
|
||||||
c.wait(timeout=10)
|
c.wait(timeout=10)
|
||||||
logs = c.logs(stdout=True).decode("utf-8")
|
logs = c.logs(stdout=True).decode("utf-8")
|
||||||
|
@@ -26,7 +26,8 @@ def test_check_extension(container, extension):
|
|||||||
"""
|
"""
|
||||||
LOGGER.info(f"Checking the extension: {extension} ...")
|
LOGGER.info(f"Checking the extension: {extension} ...")
|
||||||
c = container.run(
|
c = container.run(
|
||||||
tty=True, command=["start.sh", "jupyter", "labextension", "check", extension]
|
tty=True,
|
||||||
|
command=["start.sh", "jupyter", "labextension", "check", extension]
|
||||||
)
|
)
|
||||||
rv = c.wait(timeout=10)
|
rv = c.wait(timeout=10)
|
||||||
logs = c.logs(stdout=True).decode("utf-8")
|
logs = c.logs(stdout=True).decode("utf-8")
|
||||||
|
Reference in New Issue
Block a user