Skip to content

added functions to correct for extinction and v6 cuts #117

added functions to correct for extinction and v6 cuts

added functions to correct for extinction and v6 cuts #117

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request: null
jobs:
tests:
name: tests
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: 3.8
channels: conda-forge,defaults
channel-priority: strict
show-channel-urls: true
miniforge-version: latest
miniforge-variant: Mambaforge
- name: configure conda and install code
shell: bash -l {0}
run: |
conda config --set always_yes yes
mamba install --quiet \
--file=requirements.txt
python -m pip install -e .
mamba install -y -q \
flake8 \
pytest \
pytest-xdist
- name: lint
shell: bash -l {0}
run: |
flake8 des_y6utils
- name: test
shell: bash -l {0}
run: |
pytest -n 2 -vv des_y6utils