Skip to content

Fix dependency error #11

Fix dependency error

Fix dependency error #11

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install pytest
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .
pip install .[jax_cpu]
- name: Run pytest
run: |
pytest -vx tests/test_strain_compute.py
pytest -vx tests/test_stest_compute.py
pytest -vx tests/test_influence_compute.py