mirror of
https://github.com/github/spec-kit.git
synced 2026-07-03 12:28:06 +08:00
Clear pre-existing lint debt flagged by repo-wide `ruff check` (the lint config only scopes src/, so tests/ had drifted). No behavior change. - F401/F541: drop unused imports and redundant f-string prefixes (autofix) - E741: rename ambiguous `l` to `ln` in comprehensions - E702: split semicolon-joined statements onto separate lines - F841: drop unused bindings while keeping the side-effecting calls (_minimal_feature, install_from_directory) Full suite: 3344 passed, 40 skipped. ruff check (repo-wide): clean.
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
"""Regression guard: version symbols must remain importable from specify_cli."""
|
|
from specify_cli import (
|
|
GITHUB_API_LATEST,
|
|
self_check,
|
|
self_upgrade,
|
|
)
|
|
|
|
|
|
def test_version_symbols_importable():
|
|
assert isinstance(GITHUB_API_LATEST, str)
|
|
assert GITHUB_API_LATEST.startswith("https://")
|
|
assert callable(self_check)
|
|
assert callable(self_upgrade)
|
|
|
|
|
|
def test_version_symbols_available_from_star_import():
|
|
namespace = {}
|
|
exec("from specify_cli import *", namespace)
|
|
|
|
for symbol in ("GITHUB_API_LATEST", "self_check", "self_upgrade"):
|
|
assert symbol in namespace
|
|
|
|
|
|
def test_version_module_symbols_directly_importable():
|
|
from specify_cli._version import (
|
|
_fetch_latest_release_tag,
|
|
_get_installed_version,
|
|
_is_newer,
|
|
_normalize_tag,
|
|
self_app,
|
|
self_check,
|
|
self_upgrade,
|
|
)
|
|
assert callable(_get_installed_version)
|
|
assert callable(_normalize_tag)
|
|
assert callable(_is_newer)
|
|
assert callable(_fetch_latest_release_tag)
|
|
assert callable(self_check)
|
|
assert callable(self_upgrade)
|
|
assert self_app is not None
|