Skip to content

chore: bump to v0.4.6 -- wire search command in TS CLI #55

chore: bump to v0.4.6 -- wire search command in TS CLI

chore: bump to v0.4.6 -- wire search command in TS CLI #55

Workflow file for this run

name: CI — Test Suite
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Tests (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-timeout graphql-core tiktoken pyyaml
- name: Run test suite
run: |
python -m pytest tests/ -q --timeout=60 --ignore=tests/test_integration.py
timeout-minutes: 10
- name: Run integration tests (allow failure)
continue-on-error: true
run: |
python -m pytest tests/test_integration.py -q --timeout=120
timeout-minutes: 5