Skip to content

Don't use urllib3 2.x features #38

Don't use urllib3 2.x features

Don't use urllib3 2.x features #38

Workflow file for this run

name: Test
on: [push, pull_request, workflow_dispatch]
env:
FORCE_COLOR: 1
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
allow-prereleases: true
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U pytest
python -m pip install -r requirements.txt
- name: Test
run: |
pytest