Skip to content

Merge pull request #17 from ablt-ai/dependabot/pip/aiohttp-3.9.2 #17

Merge pull request #17 from ablt-ai/dependabot/pip/aiohttp-3.9.2

Merge pull request #17 from ablt-ai/dependabot/pip/aiohttp-3.9.2 #17

Workflow file for this run

name: Tests
on:
push:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest==7.4.3
pip install pytest-asyncio==0.21.1
- name: Execute tests
id: tests
env:
ABLT_BEARER_TOKEN: ${{ secrets.BEARER_TOKEN }}
run: PYTHONPATH=. pytest tests