File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,10 @@ docs:
154
154
rm -rf docs/_build/
155
155
@${ACTIVATE} sphinx-build docs/source docs/_build/
156
156
157
+ check_docs :
158
+ @${ACTIVATE} sphinx-build -E -W docs/source build
159
+ @${ACTIVATE} docs/scripts/doc8_style_check.sh
160
+
157
161
docker-images :
158
162
@echo " -> Build Docker services"
159
163
docker-compose build
Original file line number Diff line number Diff line change 32
32
python_versions : ['3.10', '3.11', '3.12']
33
33
test_suites :
34
34
all : make test
35
+
36
+ - template : etc/ci/azure-posix.yml
37
+ parameters :
38
+ job_name : ubuntu22_cpython
39
+ image_name : ubuntu-22.04
40
+ python_versions : ['3.10']
41
+ test_suites :
42
+ docs : make check_docs
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ CUSTOM_PACKAGES=""
31
31
32
32
# Requirement arguments passed to pip and used by default or with --dev.
33
33
REQUIREMENTS=" $CUSTOM_PACKAGES --editable purldb-toolkit/ --editable purl2vcs/ --editable . --constraint requirements.txt"
34
- DEV_REQUIREMENTS=" $CUSTOM_PACKAGES --editable purldb-toolkit/[testing] --editable .[testing] --editable purl2vcs/[testing] --constraint requirements.txt --constraint requirements-dev.txt"
34
+ DEV_REQUIREMENTS=" $CUSTOM_PACKAGES --editable purldb-toolkit/[testing] --editable .[testing,docs ] --editable purl2vcs/[testing] --constraint requirements.txt --constraint requirements-dev.txt"
35
35
DOCS_REQUIREMENTS=" $CUSTOM_PACKAGES --editable purldb-toolkit/ --editable .[docs] --constraint requirements.txt"
36
36
37
37
# where we create a virtualenv
You can’t perform that action at this time.
0 commit comments