Skip to content

Disable default integration pytest filter #212

Disable default integration pytest filter

Disable default integration pytest filter #212

name: Retriever Unit Tests
on:
push:
branches:
- "**"
pull_request:
jobs:
retriever-unit-tests:
name: Run Retriever Unit Tests
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install unit test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pandas pydantic pyyaml typer
- name: Run retriever unit tests
env:
PYTHONPATH: nemo_retriever/src
run: python -m pytest nemo_retriever/tests -q