From 516fda4694c5baba35b2e3a3306978ba4db78ed8 Mon Sep 17 00:00:00 2001 From: Kasper Marinus Date: Fri, 30 Jan 2026 15:50:28 +0000 Subject: [PATCH 1/3] build: add cv2 dependencies to CI/CD --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7573262..1a869e5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,4 +22,5 @@ test: tags: - test script: + - apt-get update && apt-get install ffmpeg libsm6 libxext6 -y - uv run --only-group test pytest test From 53ba8bb16bf84bb2df09b5c7da000a71af87d5ae Mon Sep 17 00:00:00 2001 From: Kasper Marinus Date: Fri, 30 Jan 2026 15:57:47 +0000 Subject: [PATCH 2/3] build: remove test group usage --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1a869e5..9b08f58 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,4 +23,4 @@ test: - test script: - apt-get update && apt-get install ffmpeg libsm6 libxext6 -y - - uv run --only-group test pytest test + - uv run pytest test From 68f445c8bcd4af50f1e396803a10997b87c87c68 Mon Sep 17 00:00:00 2001 From: Kasper Marinus Date: Fri, 30 Jan 2026 16:03:51 +0000 Subject: [PATCH 3/3] Revert "build: remove test group usage" This reverts commit 53ba8bb16bf84bb2df09b5c7da000a71af87d5ae --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9b08f58..1a869e5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,4 +23,4 @@ test: - test script: - apt-get update && apt-get install ffmpeg libsm6 libxext6 -y - - uv run pytest test + - uv run --only-group test pytest test