Skip to content

Bump aiohttp from 3.9.3 to 3.9.5 #102

Bump aiohttp from 3.9.3 to 3.9.5

Bump aiohttp from 3.9.3 to 3.9.5 #102

Workflow file for this run

name: Tests-PR
on:
push:
branches-ignore:
- 'master'
pull_request:
branches-ignore:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest==8.1.1
pip install pytest-asyncio==0.23.6
pip install pytest-rerunfailures==14.0
- name: Execute tests
id: tests
env:
ABLT_BEARER_TOKEN: ${{ secrets.BEARER_TOKEN }}
run: PYTHONPATH=. pytest tests