Skip to content

Tests

Tests #176

Workflow file for this run

name: Tests
on:
workflow_dispatch:
schedule:
- cron: '0 7 * * *'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Pytest
run: pytest -q --maxfail=1 --disable-warnings --cov=neuralcache --cov-report=xml