##// END OF EJS Templates
Partly revert "remove now-obsolete use of skip_doctest outside core"...
Partly revert "remove now-obsolete use of skip_doctest outside core" This partly reverts commit 02234da0d461f5ddee142d51952dc10a86b8074e. test_decorators.py is intended to test skip_doctest, the removing was wrong.

File last commit:

r26435:d54783c4
r26938:fda2ebea
Show More
docs.yml
26 lines | 619 B | text/x-yaml | YamlLexer
name: Build docs
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Graphviz
run: |
sudo apt-get update
sudo apt-get install graphviz
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install -r docs/requirements.txt
- name: Build docs
run: |
python tools/fixup_whats_new_pr.py
make -C docs/ html SPHINXOPTS="-W"