Skip to content

VADC-785

VADC-785 #257

Workflow file for this run

name: pytest-coverage
on:
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip poetry
poetry install
pip install .
- name: Get test coverage and fail if total coverage under 80 percent
run: |
pytest --cov argowrapper test --cov-fail-under=80