fix(tests) remove manditory check for ripgrep

This commit is contained in:
Travis Abendshien
2026-01-24 17:16:32 -08:00
parent d54d46e704
commit c4c749650f

View File

@@ -2,7 +2,6 @@
# Licensed under the GPL-3.0 License.
# Created for TagStudio: https://github.com/CyanVoxel/TagStudio
import shutil
from pathlib import Path
from tempfile import TemporaryDirectory
@@ -33,9 +32,7 @@ def test_refresh_new_files(library: Library, exclude_mode: bool):
@pytest.mark.parametrize("library", [TemporaryDirectory()], indirect=True)
def test_refresh_multi_byte_filenames_ripgrep(library: Library):
assert shutil.which("rg") is not None
def test_refresh_multi_byte_filenames(library: Library):
library_dir = unwrap(library.library_dir)
# Given
registry = RefreshTracker(library=library)