Skip to content

Add warning, catch Windows CI GUI-related error #29

Add warning, catch Windows CI GUI-related error

Add warning, catch Windows CI GUI-related error #29

Workflow file for this run

name: Unittest
on:
push:
pull_request:
branches:
- develop
- feature/**
schedule:
- cron: "0 0 * * 0" # weekly
jobs:
unit_tests:
name: Unit Tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.9, "3.10", "3.11"]
exclude:
# excludes macOS, until a fix can be found for process failure (#134)
- os: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: "setup.py"
- name: Python Packages Install
run: |
python -m pip install --upgrade pip # upgrade pip
pip install wheel
pip install -q pytest pytest-runner pytest-cov coverage codacy-coverage
pip install coveralls
pip install .
- name: Test Windows
if: runner.os == 'Windows'
env:
MPLBACKEND: Agg
run: python setup.py test
- name: Test MacOS
if: runner.os == 'macOS'
run: python setup.py test
- name: Prep Linux
if: runner.os == 'Linux'
run: |
sudo apt-get install jq curl # codacy requirement
sudo apt-get install xvfb
- name: Test Linux
if: runner.os == 'Linux'
run: |
xvfb-run python setup.py test
- name: Coveralls
env:
COVERALLS_SERVICE_NAME: github
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: ${{ matrix.test-name }}
COVERALLS_PARALLEL: true
run: |
coveralls
coveralls:
name: Indicate completion to coveralls.io
needs: unit_tests
if: success() || failure()
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Finished
run: |
pip3 install --upgrade coveralls
coveralls --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}