Skip to content

Set usetex=False by default #39

Set usetex=False by default

Set usetex=False by default #39

Workflow file for this run

name: Testing
on:
push:
branches:
- main
- devel
pull_request:
branches:
- main
- devel
jobs:
test:
runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ['3.12']
steps:
- name: Check out the code
uses: actions/checkout@v3
# - name: Set up Python
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install ".[test]"
- name: Inspect maxplotlib arguments
run: |
maxplotlib -h
- name: Run tests
run: |
coverage run -m pytest .
coverage report --sort=cover