mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 11:32:57 +00:00
Fix python codestyle
This commit is contained in:
@@ -2,18 +2,16 @@
|
||||
# Distributed under the terms of the Modified BSD License.
|
||||
import logging
|
||||
|
||||
import pytest
|
||||
|
||||
LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
||||
def test_julia(container):
|
||||
"""Basic julia test"""
|
||||
LOGGER.info(f"Test that julia is correctly installed ...")
|
||||
LOGGER.info("Test that julia is correctly installed ...")
|
||||
running_container = container.run(
|
||||
tty=True, command=["start.sh", "bash", "-c", "sleep infinity"]
|
||||
)
|
||||
command = f"julia --version"
|
||||
command = "julia --version"
|
||||
cmd = running_container.exec_run(command)
|
||||
output = cmd.output.decode("utf-8")
|
||||
assert cmd.exit_code == 0, f"Command {command} failed {output}"
|
||||
|
Reference in New Issue
Block a user