Skip to content

test: add SDK agent install smoke matrix #174

test: add SDK agent install smoke matrix

test: add SDK agent install smoke matrix #174

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: pytest ${{ matrix.os }} / py${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ["3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "0.11.7"
- name: Install dependencies
working-directory: Gradata
run: uv sync --all-extras --dev
- name: Run pytest
working-directory: Gradata
run: uv run pytest tests/ -q --tb=short -m "not integration"