Skip to content

fix(serial.py): Pytest-embedded leaks file descriptors when used with pytest-lazy-fixture (RDT-577) #101

fix(serial.py): Pytest-embedded leaks file descriptors when used with pytest-lazy-fixture (RDT-577)

fix(serial.py): Pytest-embedded leaks file descriptors when used with pytest-lazy-fixture (RDT-577) #101

Workflow file for this run

name: Test Build Docs
on:
pull_request:
paths:
- '**.py'
- 'docs/**'
- '*.md'
jobs:
test-build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Install dependencies
run: |
bash foreach.sh install
pip install -r docs/requirements.txt
- name: Test build docs
run: |
cd docs && make html SPHINXOPTS="-W"