Skip to content

Bump urllib3 from 2.0.6 to 2.0.7 #244

Bump urllib3 from 2.0.6 to 2.0.7

Bump urllib3 from 2.0.6 to 2.0.7 #244

Workflow file for this run

name: 'tests'
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry==1.2.2
poetry install --no-interaction --no-ansi
- name: QA with flake8, black, isort and mypy
run: |
poetry run pre-commit run --all-files
- name: Configure git user for git unit tests
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: Unit tests
run: |
poetry run pytest -vv
- name: Coverage report
run: |
poetry run pytest --cov=./ --cov-report=xml
- name: Upload coverage
uses: codecov/codecov-action@v1