Skip to content

Bump pytest from 7.4.2 to 7.4.3 #208

Bump pytest from 7.4.2 to 7.4.3

Bump pytest from 7.4.2 to 7.4.3 #208

Workflow file for this run

name: Test tap-smoke-test
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
env:
PIP_CONSTRAINT: .github/workflows/constraints.txt
steps:
- uses: actions/checkout@v4
- name: Set up Python '${{ matrix.python-version }}'
uses: actions/setup-python@v4
with:
python-version: '${{ matrix.python-version }}'
- name: Install Poetry
run: |
pipx install poetry
poetry --version
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install
- name: Test with pytest
run: |
poetry run pytest --capture=no