Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions tests/test_parsers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import pytest
from modelinfo.parsers.huggingface import _get_hf_endpoint
from modelinfo.parsers.safetensors import parse_safetensors_header

FIXTURES_DIR = os.path.join(os.path.dirname(__file__), "fixtures")
Expand Down Expand Up @@ -47,9 +48,6 @@ def test_gguf_parser_metadata():
assert arch_name == "Qwen2 (1 transformer layers)"


# --- HF_ENDPOINT validation ---

from modelinfo.parsers.huggingface import _get_hf_endpoint


def test_hf_endpoint_valid_https(monkeypatch):
Expand Down
Loading