Skip to content

Fix ModelCompressor parsing in HF Quantizer case #703

Fix ModelCompressor parsing in HF Quantizer case

Fix ModelCompressor parsing in HF Quantizer case #703

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
python-tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: actions/checkout@v3
- name: Set Env
run: |
pip3 install --upgrade pip && pip3 install --upgrade setuptools
pip3 install virtualenv
virtualenv venv
source venv/bin/activate
- name: "⚙️ Install dependencies"
run: pip3 install .[dev,accelerate]
- name: "🔬 Running tests"
run: make test