Skip to content

Tests (conda-forge) #36

Tests (conda-forge)

Tests (conda-forge) #36

name: Tests (conda-forge)
on:
# push:
# branches: [main, feature_pytest_click]
# pull_request:
# branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4 # get the test data
- name: Get Date
id: get-date
run: echo "week=$(/bin/date -u '+%Y%U')" >> $GITHUB_OUTPUT
shell: bash
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
miniforge-version: latest
# channels: conda-forge
# channel-priority: true
activate-environment: test
auto-update-conda: false
conda-solver: libmamba
- name: Cache conda
uses: actions/cache@v4
id: cache
with:
# path: ~/conda_pkgs_dir
# key: ${{ runner.os }}-${{ matrix.python-version }}-${{ steps.get-date.outputs.week }}-${{ hashFiles('pyproject.toml') }}
path: ${{ env.CONDA }}/envs
key: ${{ runner.os }}-${{ runner.arch }}-${{ matrix.python-version }}-${{ steps.get-date.outputs.week }}-${{ hashFiles('pyproject.toml') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
conda info
conda install -c conda-forge rasterio opencv click tqdm pyyaml fsspec requests aiohttp pytest pytest-cov
conda list
- name: Run unit tests
run: |
python -m pytest --cov=orthority --cov-report=term-missing --cov-report=xml:coverage.xml ./tests