Skip to content

Update test_connection.py #298

Update test_connection.py

Update test_connection.py #298

Workflow file for this run

name: Run Python 🐍 tests
on: [push, pull_request]
env:
PYTHONUTF8: 1
jobs:
test:
strategy:
matrix:
os: ["macos-latest", "windows-latest","ubuntu-20.04"]
python-version: ["3.9.13","3.8.10","3.10","3.11"]
fail-fast: false
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .[all]
- name: Test with pytest
run: |
pytest