Skip to content

Hotfix/half precision inference #167

Hotfix/half precision inference

Hotfix/half precision inference #167

Workflow file for this run

name: CPU tests
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
defaults:
run:
shell: bash
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10"]
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: |
requirements.txt
setup.py
- name: Install Package
run: |
python -m pip install -U pip poetry
python -m poetry install --no-cache -E test -E onnx
- name: Run Tests
run: |
poetry run pytest -v --disable-pytest-warnings --strict-markers --mock-training --color=yes -m "not slow"