Skip to content

logit bias and multioutput support #113

logit bias and multioutput support

logit bias and multioutput support #113

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.9"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pytest pytest-cov
pip install ".[experiments,eval,reprs]"
- name: Run tests
run: pytest --cov=src --cov-report=xml --ignore tests/baselines --ignore tests/test_tuner.py --ignore tests/test_querier.py
- name: Upload coverage report to codecov
uses: codecov/codecov-action@v1
if: success()
with:
file: coverage.xml