Skip to content

tests: Include non-persistent buffers when validating state dicts #150

tests: Include non-persistent buffers when validating state dicts

tests: Include non-persistent buffers when validating state dicts #150

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
run_tests:
name: Run tests
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.8'
cache: 'pip'
- name: Install dependencies
run: >
python -m pip install -e . &&
python -m pip install -r tests/requirements.txt
- name: Run tests
run: python -m unittest discover tests/ --verbose