
As noted by Quentin, in CI we should be at least versioning the pytest that we install. To avoid problems later, go with the whole requirements file being used. Furthermore, our documentation building for readthedocs must also have pytest so install the requirements file there as well. Reported-by: Quentin Schulz <quentin.schulz@cherry.de> Signed-off-by: Tom Rini <trini@konsulko.com>
26 lines
537 B
YAML
26 lines
537 B
YAML
# .readthedocs.yml
|
|
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
# Required
|
|
version: 2
|
|
|
|
build:
|
|
os: "ubuntu-24.04"
|
|
apt_packages:
|
|
- python3-six
|
|
tools:
|
|
python: "3.12"
|
|
|
|
# Build documentation in the docs/ directory with Sphinx
|
|
sphinx:
|
|
configuration: doc/conf.py
|
|
|
|
# Optionally build your docs in additional formats such as PDF and ePub
|
|
formats: []
|
|
|
|
python:
|
|
install:
|
|
- requirements: doc/sphinx/requirements.txt
|
|
- requirements: test/py/requirements.txt
|