Skip to content

Initial Settings in the Code #18

Initial Settings in the Code

Initial Settings in the Code #18

Workflow file for this run

name: unit-test
on:
workflow_dispatch:
pull_request:
push:
branches: [next, qa, main]
tags: ['v*']
jobs:
pytest_package_tests:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
channels: conda-forge,defaults
use-mamba: true
environment-file: environment.yml
activate-environment: hyspecplanningtools_dev
- name: install in editable mode
run: |
echo "installing in editable mode"
python -m pip install -e .
- name: run unit tests
run: |
echo "running unit tests"
python -m pytest --cov=src --cov-report=xml --cov-report=term-missing tests/
- name: upload coverage to codecov
uses: codecov/codecov-action@v4
if:
github.actor != 'dependabot[bot]'
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: build python wheel - pypi
run: |
# test that the python wheel builds
VERSION=$(versioningit .) python -m build --wheel --no-isolation
twine check dist/hyspecplanningtools-*.whl
- name: build conda package
run: |
# test that the conda package builds
cd conda.recipe
echo "versioningit $(versioningit ../)"
# conda channels could have been defined in the conda-incubator, but you can copy/paste the lines
# below to build the conda package in your local machine
CHANNELS="--channel conda-forge"
VERSION=$(versioningit ../) conda mambabuild $CHANNELS --output-folder . .
conda verify noarch/hyspecplanningtools*.tar.bz2