Skip to content

chore(deps-dev): Bump pytest from 8.3.2 to 8.3.3 in the development-d… #250

chore(deps-dev): Bump pytest from 8.3.2 to 8.3.3 in the development-d…

chore(deps-dev): Bump pytest from 8.3.2 to 8.3.3 in the development-d… #250

Workflow file for this run

name: Test tap-klaviyo
on:
push:
branches: [main]
pull_request:
branches: [main]
paths:
- "tap_klaviyo/**"
- "tests/**"
- "pyproject.toml"
- "poetry.lock"
- ".github/workflows/ci_workflow.yml"
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install Poetry
run: |
pipx install poetry
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install
- name: Test with pytest
env:
TAP_KLAVIYO_AUTH_TOKEN: ${{ secrets.TAP_KLAVIYO_AUTH_TOKEN }}
run: |
poetry run pytest