Skip to content

Merge pull request #25 from Vanshbordia/dependabot/npm_and_yarn/bette… #41

Merge pull request #25 from Vanshbordia/dependabot/npm_and_yarn/bette…

Merge pull request #25 from Vanshbordia/dependabot/npm_and_yarn/bette… #41

Workflow file for this run

name: Tests
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test on Python 3.11
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
pip install httpx[http2,brotli]
- name: Run tests
run: pytest tests/lib/ -v