Skip to content

Update conf.py

Update conf.py #26

Workflow file for this run

name: tests
on: [push]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.10'
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: "3.10"
- name: Generate coverage report
env:
PROJECT_HOME: /home/runner/work/pygplib/pygplib
PYTHONPATH: /home/runner/work/pygplib/pygplib
run: |
pip install python-sat
pip install pyunigen
pip install pyparsing
pip install pytest
pip install pytest-cov
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3