Run tests #194
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |