Skip to content

(feat) Tensorizer Hash Verification and Live Model Verification #157

(feat) Tensorizer Hash Verification and Live Model Verification

(feat) Tensorizer Hash Verification and Live Model Verification #157

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