From 2074d9b018e719c82f7781df74272fbaad655eaf Mon Sep 17 00:00:00 2001 From: Raivis Dejus Date: Sat, 28 Feb 2026 11:35:54 +0200 Subject: [PATCH] Adding local update check for yt-dlp --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 0888f589..6a316b53 100644 --- a/Makefile +++ b/Makefile @@ -35,6 +35,11 @@ endif COVERAGE_THRESHOLD := 70 test: buzz/whisper_cpp +# A check to get updates of yt-dlp. Should run only on local as part of regular development operations +# Sort of a local "update checker" +ifndef CI + uv lock --upgrade-package yt-dlp +endif pytest -s -vv --cov=buzz --cov-report=xml --cov-report=html --benchmark-skip --cov-fail-under=${COVERAGE_THRESHOLD} --cov-config=.coveragerc benchmarks: buzz/whisper_cpp