mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-07 10:04:03 +00:00
8 lines
286 B
Python
8 lines
286 B
Python
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
from tests.utils.tracked_container import TrackedContainer
|
|
|
|
|
|
def test_julia(container: TrackedContainer) -> None:
|
|
container.run_and_wait(timeout=10, command=["julia", "--version"])
|