mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
- Only check lower bound on conda/mamba, upgrade unbounded if not matched (let conda apply upper bound according to existing pins, such as Python) - handle missing mamba - avoid upgrading Python by aborting the install, instead of keeping old envs - minimum supported Python for user env is 3.9 - Fix output reporting of conda install step (no need for json capture when we don't parse the output - exit codes will do)
57 lines
1.6 KiB
Python
57 lines
1.6 KiB
Python
"""
|
|
Test conda commandline wrappers
|
|
"""
|
|
from tljh import conda
|
|
from tljh import installer
|
|
import os
|
|
import pytest
|
|
import subprocess
|
|
import tempfile
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def prefix():
|
|
"""
|
|
Provide a temporary directory with a mambaforge conda environment
|
|
"""
|
|
machine = os.uname().machine
|
|
installer_url, checksum = installer._mambaforge_url()
|
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
with conda.download_miniconda_installer(
|
|
installer_url, checksum
|
|
) as installer_path:
|
|
conda.install_miniconda(installer_path, tmpdir)
|
|
yield tmpdir
|
|
|
|
|
|
def test_ensure_packages(prefix):
|
|
"""
|
|
Test installing packages in conda environment
|
|
"""
|
|
conda.ensure_conda_packages(prefix, ["numpy"])
|
|
# Throws an error if this fails
|
|
subprocess.check_call([os.path.join(prefix, "bin", "python"), "-c", "import numpy"])
|
|
|
|
|
|
def test_ensure_pip_packages(prefix):
|
|
"""
|
|
Test installing pip packages in conda environment
|
|
"""
|
|
conda.ensure_conda_packages(prefix, ["pip"])
|
|
conda.ensure_pip_packages(prefix, ["numpy"])
|
|
# Throws an error if this fails
|
|
subprocess.check_call([os.path.join(prefix, "bin", "python"), "-c", "import numpy"])
|
|
|
|
|
|
def test_ensure_pip_requirements(prefix):
|
|
"""
|
|
Test installing pip packages with requirements.txt in conda environment
|
|
"""
|
|
conda.ensure_conda_packages(prefix, ["pip"])
|
|
with tempfile.NamedTemporaryFile() as f:
|
|
# Sample small package to test
|
|
f.write(b"there")
|
|
f.flush()
|
|
conda.ensure_pip_requirements(prefix, f.name)
|
|
subprocess.check_call([os.path.join(prefix, "bin", "python"), "-c", "import there"])
|