Skip to content

[feat] Update mine_hard_negatives to using a full corpus and multiple positives #989

[feat] Update mine_hard_negatives to using a full corpus and multiple positives

[feat] Update mine_hard_negatives to using a full corpus and multiple positives #989

Workflow file for this run

name: Unit tests
on:
push:
branches:
- master
- v*-release
pull_request:
branches:
- master
- v*-release
workflow_dispatch:
jobs:
test_sampling:
name: Run unit tests
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, windows-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Python environment
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Try to load cached dependencies
uses: actions/cache@v3
id: restore-cache
with:
path: ${{ env.pythonLocation }}
key: python-dependencies-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ env.pythonLocation }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install '.[dev,train]'
- name: Run unit tests
run: |
python -m pytest --durations 20 -sv tests/