Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
os: ubuntu-24.04
tools:
python: "3"
# You can also specify other tool versions:
Expand All @@ -27,4 +27,7 @@ formats: all
# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: docs/requirements.txt
- method: uv
command: sync
groups:
- docs
1 change: 1 addition & 0 deletions docs/.python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.14
4 changes: 2 additions & 2 deletions docs/build.ps1
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pip install --user -r requirements.txt --upgrade --upgrade-strategy eager
python -m sphinx . _build -E -a
uv lock --upgrade
uv run python -m sphinx . _build -E -a
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

# General information about the project.
project = u'Behat Code Coverage'
copyright = u'2019-2024, Doug Wright'
copyright = u'2019-2026, Doug Wright'
author = u'Doug Wright'

# The version info for the project you're documenting, acts as replacement for
Expand All @@ -67,7 +67,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.venv']

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'friendly'
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ basis. It is configured by setting the ``html`` key. The default values are outl
The ``colors`` and ``customCSSFile`` settings are only available from php-code-coverage v10

(Open)Clover
^^^^^^^^^
^^^^^^^^^^^^
Originating from the Java world, Clover-format reports are a standard way of exchanging coverage data
between tools. It is configured by setting the ``openclover`` or ``clover`` key. The default values are outlined below:

Expand Down
8 changes: 8 additions & 0 deletions docs/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[project]
name = "docs"
version = "1.0.0"
requires-python = ">=3.14"
dependencies = [
"myst-parser~=4.0",
"sphinx-rtd-theme~=3.1",
]
3 changes: 0 additions & 3 deletions docs/requirements.txt

This file was deleted.

420 changes: 420 additions & 0 deletions docs/uv.lock

Large diffs are not rendered by default.

Loading