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 adc2e46 commit d9a9ac2Copy full SHA for d9a9ac2
.github/workflows/run-unit-tests_conda-forge.yml
@@ -32,6 +32,19 @@ jobs:
32
activate-environment: orthority-test
33
conda-solver: libmamba
34
35
+ - name: Install dependencies
36
+ run: |
37
+ conda info
38
+ conda install -c conda-forge rasterio opencv click tqdm pyyaml fsspec requests aiohttp pytest pytest-cov
39
+ conda list
40
+
41
+ - name: Install OpenCV Linux dependencies
42
+ if: matrix.os == 'ubuntu-latest'
43
44
+ # Fix cv2 ImportError: 'libEGL.so.1: cannot open shared object file: No such file or directory'
45
+ sudo apt-get update
46
+ sudo apt-get install -y libegl1 libopengl0
47
48
- name: Run unit tests
49
run: |
50
python -m pytest --cov=orthority --cov-report=term-missing --cov-report=xml:coverage.xml ./tests
0 commit comments