Skip to content

Add option for minimum term contribution #185

Add option for minimum term contribution

Add option for minimum term contribution #185

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test extrap package
on:
push:
branches: [ master, vNext ]
pull_request:
branches: [ master, vNext ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.8, 3.9, "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install autopep8 pytest pytest-cov
pip install .
sudo apt install libegl1
- name: autopep8
id: autopep8
uses: peter-evans/autopep8@v1
with:
args: --recursive --in-place --aggressive --aggressive .
- name: Test with pytest
run: |
cd tests
pytest . --ignore-glob=test_gui*.py --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml --cov=com --cov-report=xml
- name: Upload pytest test results
uses: actions/upload-artifact@v4
with:
name: pytest-results-${{ matrix.python-version }}
path: /home/runner/work/extrap/extrap/tests/junit/test-results-${{ matrix.python-version }}.xml
if: ${{ always() }}