Skip to content

Bump aiohttp from 3.12.13 to 3.13.3 #45

Bump aiohttp from 3.12.13 to 3.13.3

Bump aiohttp from 3.12.13 to 3.13.3 #45

Workflow file for this run

name: Run Tests
on:
pull_request:
branches: [ main, master ]
push:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: |
python -m pytest tests/ -v --tb=short
env:
PYTHONPATH: .