Tests (conda-forge) #43
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- 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 }} | |
key: | |
${{ runner.os }}-${{ runner.arch }}-${{ matrix.python-version }}-${{ | |
steps.get-date.outputs.week }}-${{ hashFiles('pyproject.toml') }}-v2 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# miniforge-version: latest | |
channels: conda-forge | |
channel-priority: strict | |
activate-environment: orthority-test | |
# auto-update-conda: false | |
conda-solver: libmamba | |
- name: Install dependencies | |
# if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
ls -l ~/conda_pkgs_dir | |
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 |