Skip to content

Fix incorrect override in RegexUserAgentParser.__call__ #681

Fix incorrect override in RegexUserAgentParser.__call__

Fix incorrect override in RegexUserAgentParser.__call__ #681

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Set up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: '3.11'
- name: Upgrade python tooling
run: python -m pip install --upgrade pip setuptools wheel
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Install lint dependencies
run: python -m pip install --upgrade mypy
- name: Lint
run: python -m mypy -p linehaul
- name: Install test dependencies
run: python -m pip install pytest pretend hypothesis pyaml
- name: Test
run: python -m pytest test_functions.py tests/unit