Skip to content

Commit e80a11d

Browse files
authored
Enable ubuntu conda test (#429)
* ci: enable conda tests * ci: attempt fixing Windows test, enable Mac test * ci: only enable conda ubuntu test for now
1 parent 1d69439 commit e80a11d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/conda.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
python-version: ["3.9"]
14-
platform: ["ubuntu-latest", "windows-latest"]
14+
platform: ["ubuntu-latest"]
1515

1616
runs-on: ${{ matrix.platform }}
1717
defaults:
@@ -27,6 +27,9 @@ jobs:
2727
auto-activate-base: false
2828
mamba-version: "*"
2929
channel-priority: true
30+
- name: Set GDAL environment variable for Windows
31+
if: runner.os == 'Windows'
32+
run: echo "USE_PATH_FOR_GDAL_PYTHON=YES" >> $GITHUB_ENV
3033
- name: Print conda environment
3134
run: |
3235
# Print environment
@@ -39,3 +42,4 @@ jobs:
3942
python -c 'import eis_toolkit'
4043
# Run unittests with pytest
4144
pytest -v
45+

0 commit comments

Comments
 (0)