Skip to content

Bump botocore from 1.35.56 to 1.35.60 #2810

Bump botocore from 1.35.56 to 1.35.60

Bump botocore from 1.35.56 to 1.35.60 #2810

Workflow file for this run

name: PyTests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
env:
POETRY_VIRTUALENVS_CREATE: false
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install --no-root
- name: Run tests
run: |
pytest ./tests/unit