mirror of
https://github.com/acon96/home-llm.git
synced 2026-01-09 21:58:00 -05:00
21 lines
503 B
Python
21 lines
503 B
Python
import pytest
|
|
from unittest.mock import patch
|
|
|
|
# @pytest.fixture
|
|
# def patch_dependency_group1():
|
|
# with patch('path.to.dependency1') as mock1, \
|
|
# patch('path.to.dependency2') as mock2:
|
|
# yield mock1, mock2
|
|
|
|
# @pytest.fixture
|
|
# def patch_dependency_group2():
|
|
# with patch('path.to.dependency3') as mock3, \
|
|
# patch('path.to.dependency4') as mock4:
|
|
# yield mock3, mock4
|
|
|
|
|
|
def test_validate_setup_schemas():
|
|
pass
|
|
|
|
def test_validate_options_schema():
|
|
pass |