From 879f40d76f4cfd946af4891a19685d9e5350d5ae Mon Sep 17 00:00:00 2001 From: Oscar Pocock Date: Thu, 28 Apr 2022 22:19:59 +0100 Subject: [PATCH] Added step to install libgl for testing with opencv --- .woodpecker/.test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.woodpecker/.test.yml b/.woodpecker/.test.yml index c39f634..e528c4c 100644 --- a/.woodpecker/.test.yml +++ b/.woodpecker/.test.yml @@ -2,6 +2,7 @@ pipeline: unit-tests: image: python:3.8 commands: + - apt update -y && apt install libgl1 - python3.8 -m pip install -r ./requirements_dev.txt -r ./requirements.txt - python3.8 -m pip install -e . - pytest test/ -v