Added step to install libgl for testing with opencv
Some checks failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/test Pipeline failed

This commit is contained in:
Oscar Blue 2022-04-28 22:19:59 +01:00
parent f35bd80767
commit 879f40d76f

View file

@ -2,6 +2,7 @@ pipeline:
unit-tests: unit-tests:
image: python:3.8 image: python:3.8
commands: commands:
- apt update -y && apt install libgl1
- python3.8 -m pip install -r ./requirements_dev.txt -r ./requirements.txt - python3.8 -m pip install -r ./requirements_dev.txt -r ./requirements.txt
- python3.8 -m pip install -e . - python3.8 -m pip install -e .
- pytest test/ -v - pytest test/ -v