Skip to content

[ISSUE #14387] HTTP2 Implementation, Logging Encapsulation, Extension Registration, and Loading #6

[ISSUE #14387] HTTP2 Implementation, Logging Encapsulation, Extension Registration, and Loading

[ISSUE #14387] HTTP2 Implementation, Logging Encapsulation, Extension Registration, and Loading #6

Workflow file for this run

name: Run Unittests
on: [push, pull_request]
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run unittests
run: |
python -m unittest discover -s tests -p 'test_*.py'