Skip to content

ENH try to get more error info when mping (#302) #312

ENH try to get more error info when mping (#302)

ENH try to get more error info when mping (#302) #312

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 pizza_cutter
flake8 bin/*
- name: test
shell: bash -l {0}
run: |
git clone --depth=1 https://github.com/beckermr/des-test-data.git
export TEST_DESDATA=`pwd`/des-test-data
pytest -n 2 -vv pizza_cutter