We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d620b1 commit b1c3995Copy full SHA for b1c3995
.github/workflows/run-unit-tests_conda-forge.yml
@@ -41,6 +41,13 @@ jobs:
41
pip install opencv-python-headless
42
conda list
43
44
+ - name: Install OpenCV Linux dependencies
45
+ if: matrix.os == 'ubuntu-latest'
46
+ run: |
47
+ # Fix cv2 ImportError: 'libEGL.so.1: cannot open shared object file: No such file or directory'
48
+ sudo apt-get update
49
+ sudo apt-get install -y libegl1 libopengl0
50
+
51
- name: Run unit tests
52
run: |
53
python -m pytest --cov=orthority --cov-report=term-missing --cov-report=xml:coverage.xml ./tests
0 commit comments