Add more tests.

This commit is contained in:
erinhmclark
2025-02-14 09:48:37 +00:00
parent 3fce593aad
commit 319c1e8f92
10 changed files with 102 additions and 33 deletions

View File

@@ -133,14 +133,6 @@ def unpickle():
return _unpickle
@pytest.fixture
def mock_python_dependencies():
with patch("auto_archiver.core.module") as mock_check_python_dep:
# Mock all Python dependencies as available
mock_check_python_dep.return_value = True
yield mock_check_python_dep
@pytest.fixture
def mock_binary_dependencies():
with patch("shutil.which") as mock_shutil_which: