From c4c749650ffd67ce784406935663f893072b6d27 Mon Sep 17 00:00:00 2001 From: Travis Abendshien <46939827+CyanVoxel@users.noreply.github.com> Date: Sat, 24 Jan 2026 17:16:32 -0800 Subject: [PATCH] fix(tests) remove manditory check for ripgrep --- tests/macros/test_refresh_dir.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/macros/test_refresh_dir.py b/tests/macros/test_refresh_dir.py index b861cf67..4b550a22 100644 --- a/tests/macros/test_refresh_dir.py +++ b/tests/macros/test_refresh_dir.py @@ -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)