Skip to content

Commit

Permalink
Enable ubuntu conda test (#429)
Browse files Browse the repository at this point in the history
* ci: enable conda tests

* ci: attempt fixing Windows test, enable Mac test

* ci: only enable conda ubuntu test for now
  • Loading branch information
nmaarnio committed Sep 17, 2024
1 parent 1d69439 commit e80a11d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.9"]
platform: ["ubuntu-latest", "windows-latest"]
platform: ["ubuntu-latest"]

runs-on: ${{ matrix.platform }}
defaults:
Expand All @@ -27,6 +27,9 @@ jobs:
auto-activate-base: false
mamba-version: "*"
channel-priority: true
- name: Set GDAL environment variable for Windows
if: runner.os == 'Windows'
run: echo "USE_PATH_FOR_GDAL_PYTHON=YES" >> $GITHUB_ENV
- name: Print conda environment
run: |
# Print environment
Expand All @@ -39,3 +42,4 @@ jobs:
python -c 'import eis_toolkit'
# Run unittests with pytest
pytest -v

0 comments on commit e80a11d

Please sign in to comment.