Skip to content

Fix compatibilty issues (#59) #178

Fix compatibilty issues (#59)

Fix compatibilty issues (#59) #178

Workflow file for this run

name: Run tests
on:
schedule:
- cron: '0 12 * * 3'
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.12' ]
name: pytest Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dev environment & parsmooth
run: |
python -m pip install --upgrade pip
pip install .
pip install -r requirements-test.txt
- name: Run pylint on the repo
run: |
pylint parsmooth --exit-zero
- name: Run the tests with pytest
run: |
JAX_ENABLE_X64=true pytest -n 4 -vv --cov=parsmooth --cov-report=xml --cov-report=term tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: false