Skip to content

Migrate from ligo-segments to igwn-segments #252

Migrate from ligo-segments to igwn-segments

Migrate from ligo-segments to igwn-segments #252

Workflow file for this run

# -----------------------
#
# Run a full build-and-test from the git repo
# using a combination of conda and pip to install
# all optional dependencies.
#
# This is the 'full' test suite.
#
# -----------------------
name: Build and test
on:
push:
branches:
- main
- master
- release/**
pull_request:
branches:
- main
- master
- release/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
conda:
name: Python ${{ matrix.python-version }} (${{ matrix.os }})
strategy:
fail-fast: false
matrix:
os:
- macOS
- Ubuntu
python-version:
- "3.9"
- "3.10"
- "3.11"
runs-on: ${{ matrix.os }}-latest
# this is needed for conda environments to activate automatically
defaults:
run:
shell: bash -el {0}
steps:
- name: Get source code
uses: actions/checkout@v4
with:
fetch-depth: 0
# EG 13 Dec 2024: commenting out broken cache
# - name: Cache conda packages
# uses: actions/cache@v4
# env:
# # increment to reset cache
# CACHE_NUMBER: 0
# with:
# path: ~/conda_pkgs_dir
# key: ${{ runner.os }}-conda-${{ matrix.python-version }}-${{ env.CACHE_NUMBER }}
# restore-keys: ${{ runner.os }}-conda-${{ matrix.python-version }}-
- name: Configure conda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
channels: conda-forge
python-version: ${{ matrix.python-version }}
# this is needed for caching to work properly:
# EG 13 Dec 2024: commenting out broken cache
# use-only-tar-bz2: true
- name: Conda info
run: conda info --all
- name: Install dependencies
run: |
# parse requirements to install as much as possible with conda
conda create --name pip2conda pip2conda
conda run -n pip2conda pip2conda \
--all \
--output environment.txt \
--python-version ${{ matrix.python-version }}
echo "-----------------"
cat environment.txt
echo "-----------------"
conda install --quiet --yes --name test --file environment.txt
- name: Install GWSumm
run: python -m pip install . --no-build-isolation -vv
- name: Package list
run: conda list --name test
- name: Run test suite
run: python -m pytest -ra --color yes --cov gwsumm --pyargs gwsumm --cov-report=xml --junitxml=pytest.xml
- name: Test command-line interfaces
run: |
python -m coverage run --append --source gwsumm -m gwsumm --help
python -m coverage run --append --source gwsumm -m gwsumm day --help
python -m coverage run --append --source gwsumm -m gwsumm week --help
python -m coverage run --append --source gwsumm -m gwsumm month --help
python -m coverage run --append --source gwsumm -m gwsumm gps --help
python -m coverage run --append --source gwsumm -m gwsumm.batch --help
python -m coverage run --append --source gwsumm -m gwsumm.plot.triggers --help
python -m coverage run --append --source gwsumm -m gwsumm.plot.guardian --help
- name: Coverage report
run: python -m coverage report --show-missing
- name: Publish coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: coverage.xml
flags: ${{ runner.os }},python${{ matrix.python-version }}
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: pytest-conda-${{ matrix.os }}-${{ matrix.python-version }}
path: pytest.xml