Skip to content

v2.0.0

v2.0.0 #14

Workflow file for this run

name: Run Integration Tests on Release
on:
release:
types: [published]
jobs:
test:
runs-on: mdb-dev
permissions:
contents: read
strategy:
matrix:
python-version: ['3.10']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
- name: Run integration tests
run: |
pytest tests/integration --disable-warnings
env:
PYTHONPATH: ./
MINDS_API_KEY: ${{ secrets.MINDS_API_KEY }}
BASE_URL: 'https://mdb.ai'