Skip to content

remove max_retries parameter from Teslamate constructor #53

remove max_retries parameter from Teslamate constructor

remove max_retries parameter from Teslamate constructor #53

Workflow file for this run

---
name: Testing
# yamllint disable-line rule:truthy
on:
push:
pull_request:
workflow_dispatch:
jobs:
pytest:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v6
- name: Install uv and set the Python version
uses: astral-sh/setup-uv@v7
with:
version: "0.9.17"
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: 🚀 Run pytest
run: uv run pytest tests