Skip to content

Add plotting module #508

Add plotting module

Add plotting module #508

Workflow file for this run

name: codecoverage
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
coverage:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.8'
steps:
- uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@main
with:
python-version: 3.8
- name: Install pyscal and test dependencies
run: |
pip install pip -U
pip install .[tests]
pip install opm # (extra package for more tests)
- name: Generate coverage report
run: |
pytest --hypothesis-profile ci tests --disable-warnings --cov=pyscal --cov-report=xml
- name: Upload coverage to Codecov
run: |
bash <(curl -s https://codecov.io/bash)