e93507a09c
Lockfile supply-chain audit / lockfile supply-chain audit (push) Has been cancelled
Windows Studio GGUF CI / GPU prebuilt resolves without Visual Studio (push) Has been cancelled
Windows Studio GGUF CI / setup.ps1 unit tests (VS 2026 / CMake guard) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2022) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-2025-vs2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-latest) (push) Has been cancelled
Windows Studio Update CI / Studio Updating Tests (push) Has been cancelled
Wheel CI / Wheel build + content sanity + import smoke (push) Has been cancelled
Lint CI / Source lint (Python + shell + YAML + JSON + safety nets) (push) Has been cancelled
MLX CI on Mac M1 / dispatch (push) Has been cancelled
Security audit / advisory audit (pip + npm + cargo) (push) Has been cancelled
Security audit / pip scan-packages :: extras (push) Has been cancelled
Security audit / pip scan-packages :: studio (push) Has been cancelled
Security audit / pip scan-packages :: hf-stack (push) Has been cancelled
Security audit / npm scan-packages (Studio frontend tarballs) (push) Has been cancelled
Security audit / workflow-trigger lint (pull_request_target / cache-poisoning) (push) Has been cancelled
Security audit / pytest tests/security (push) Has been cancelled
Security audit / npm provenance + new install-script diff (push) Has been cancelled
Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Backend CI / (Python 3.10) (push) Has been cancelled
Backend CI / (Python 3.11) (push) Has been cancelled
Backend CI / (Python 3.12) (push) Has been cancelled
Backend CI / (Python 3.13) (push) Has been cancelled
Backend CI / Repo tests (CPU) (push) Has been cancelled
Frontend CI / Frontend build + bundle sanity (push) Has been cancelled
Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Mac Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Mac Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-14) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15-intel) (push) Has been cancelled
Mac Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26-intel) (push) Has been cancelled
Mac Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Tauri CI / Tauri Linux debug build (no codesign) (push) Has been cancelled
Mac Studio Update CI / Studio Updating Tests (push) Has been cancelled
Studio UI CI / Chat UI Tests (push) Has been cancelled
Windows Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Windows Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Update CI / Studio Updating Tests (push) Has been cancelled
Core / Core (HF=default + TRL=default) (push) Has been cancelled
Core / Core (HF=4.57.6 + TRL<1) (push) Has been cancelled
Core / Core (HF=latest + TRL=latest) (push) Has been cancelled
Core / llama.cpp build + smoke (push) Has been cancelled
Windows Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Windows Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Windows Studio GGUF CI / JSON, images (push) Has been cancelled
Windows Studio GGUF CI / Studio install + inference without Visual Studio (push) Has been cancelled
Studio export capability / capability (macos-latest) (push) Has been cancelled
Studio export capability / capability (ubuntu-latest) (push) Has been cancelled
Studio export capability / capability (windows-latest) (push) Has been cancelled
Cross-platform parity / parity (macos-latest) (push) Has been cancelled
Cross-platform parity / parity (windows-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Studio load-orchestrator CI / test (push) Has been cancelled
132 lines
3.8 KiB
Python
132 lines
3.8 KiB
Python
"""Tests for the ``repo:variant`` shorthand parser used by ``unsloth studio run``.
|
|
|
|
Loads studio.py via importlib with a minimal typer stub to avoid importing the unsloth training stack.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import importlib.util
|
|
import sys
|
|
import types
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
|
|
def _load_split_repo_variant():
|
|
"""Load ``_split_repo_variant`` from studio.py with typer stubbed (discards decorator calls)."""
|
|
if "typer" not in sys.modules:
|
|
typer_stub = types.ModuleType("typer")
|
|
|
|
class _Typer:
|
|
def __init__(self, **kwargs):
|
|
pass
|
|
|
|
def callback(self, *args, **kwargs):
|
|
return lambda fn: fn
|
|
|
|
def command(self, *args, **kwargs):
|
|
return lambda fn: fn
|
|
|
|
typer_stub.Typer = _Typer
|
|
typer_stub.Option = lambda *args, **kwargs: (args[0] if args else None)
|
|
typer_stub.Context = type("Context", (), {})
|
|
typer_stub.Exit = type("Exit", (Exception,), {})
|
|
typer_stub.echo = lambda *args, **kwargs: None
|
|
sys.modules["typer"] = typer_stub
|
|
|
|
studio_py = Path(__file__).resolve().parents[2] / "unsloth_cli" / "commands" / "studio.py"
|
|
spec = importlib.util.spec_from_file_location("_studio_for_repo_variant_test", studio_py)
|
|
module = importlib.util.module_from_spec(spec)
|
|
spec.loader.exec_module(module)
|
|
return module._split_repo_variant
|
|
|
|
|
|
_split = _load_split_repo_variant()
|
|
|
|
|
|
# ── HF-style repo:variant inputs -------------------------------------
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"model_arg, expected",
|
|
[
|
|
(
|
|
"unsloth/gpt-oss-20b-GGUF:UD-Q4_K_XL",
|
|
("unsloth/gpt-oss-20b-GGUF", "UD-Q4_K_XL"),
|
|
),
|
|
("unsloth/gpt-oss-120b-GGUF:Q4_K_XL", ("unsloth/gpt-oss-120b-GGUF", "Q4_K_XL")),
|
|
("unsloth/Qwen3-0.6B-GGUF:Q4_K_M", ("unsloth/Qwen3-0.6B-GGUF", "Q4_K_M")),
|
|
# Variants commonly contain dashes, dots, and underscores.
|
|
("org/repo:UD-Q5_K_M", ("org/repo", "UD-Q5_K_M")),
|
|
("org/repo:F16", ("org/repo", "F16")),
|
|
],
|
|
)
|
|
def test_repo_variant_split(model_arg, expected):
|
|
assert _split(model_arg) == expected
|
|
|
|
|
|
# ── No variant suffix ------------------------------------------------
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"model_arg",
|
|
[
|
|
"unsloth/gpt-oss-20b-GGUF",
|
|
"unsloth/Qwen3-0.6B-GGUF",
|
|
"shorthand-no-org-no-colon",
|
|
],
|
|
)
|
|
def test_no_colon_returns_none_variant(model_arg):
|
|
repo, variant = _split(model_arg)
|
|
assert repo == model_arg
|
|
assert variant is None
|
|
|
|
|
|
# ── Local paths must NOT be split ------------------------------------
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"local_path",
|
|
[
|
|
"/abs/path/to/model.gguf",
|
|
"/abs/path:with-colon-in-name",
|
|
"./relative/model",
|
|
"../parent/model",
|
|
"~/home/model",
|
|
".",
|
|
"C:\\Users\\me\\model.gguf",
|
|
"C:/Users/me/model.gguf",
|
|
"D:/data/model:Q4", # Windows drive + colon-suffixed filename: drive wins
|
|
],
|
|
)
|
|
def test_local_path_passthrough(local_path):
|
|
repo, variant = _split(local_path)
|
|
assert repo == local_path
|
|
assert variant is None
|
|
|
|
|
|
# ── Edge cases -------------------------------------------------------
|
|
|
|
|
|
def test_empty_string():
|
|
assert _split("") == ("", None)
|
|
|
|
|
|
def test_trailing_colon_no_variant():
|
|
# "org/repo:" has no quant label; pass through unchanged so backend validation gives a clearer error.
|
|
repo, variant = _split("org/repo:")
|
|
assert repo == "org/repo:"
|
|
assert variant is None
|
|
|
|
|
|
def test_slash_in_variant_disqualifies_split():
|
|
# "foo:bar/baz" suffix has a slash, so it's not a quant label; treat as opaque.
|
|
repo, variant = _split("foo:bar/baz")
|
|
assert repo == "foo:bar/baz"
|
|
assert variant is None
|
|
|
|
|
|
def test_whitespace_stripped():
|
|
assert _split(" org/repo:Q4 ") == ("org/repo", "Q4")
|