Skip to content

examples += wikipedia_mini_rag.py for educational LLM+Wikipedia integration #531

examples += wikipedia_mini_rag.py for educational LLM+Wikipedia integration

examples += wikipedia_mini_rag.py for educational LLM+Wikipedia integration #531

Workflow file for this run

name: Run pytest
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.5.1
- name: Install dependencies
run: |
poetry install -E all
- name: Run pytest
run: |
poetry run pytest tests/