mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 11:32:57 +00:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
import logging
|
|
|
|
from tests.conftest import TrackedContainer
|
|
|
|
LOGGER = logging.getLogger(__name__)
|
|
EXPECTED_PYTHON_VERSION = "3.11"
|
|
|
|
|
|
def test_python_version(container: TrackedContainer) -> None:
|
|
LOGGER.info(
|
|
f"Checking that python major.minor version is {EXPECTED_PYTHON_VERSION}"
|
|
)
|
|
logs = container.run_and_wait(
|
|
timeout=5,
|
|
tty=True,
|
|
command=["python", "--version"],
|
|
)
|
|
assert logs.startswith("Python ")
|
|
full_version = logs.split()[1]
|
|
major_minor_version = full_version[: full_version.rfind(".")]
|
|
|
|
assert major_minor_version == EXPECTED_PYTHON_VERSION
|
|
|
|
|
|
def test_python_pinned_version(container: TrackedContainer) -> None:
|
|
LOGGER.info(f"Checking that pinned python version is {EXPECTED_PYTHON_VERSION}.*")
|
|
logs = container.run_and_wait(
|
|
timeout=5,
|
|
tty=True,
|
|
command=["cat", "/opt/conda/conda-meta/pinned"],
|
|
)
|
|
assert logs.startswith(f"python {EXPECTED_PYTHON_VERSION}.*")
|