We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e579a2 commit ff871d8Copy full SHA for ff871d8
Makefile
@@ -10,6 +10,7 @@ lint: \
10
black \
11
check-manifest \
12
doc8 \
13
+ doctest \
14
linkcheck \
15
mypy \
16
ruff \
docs/source/index.rst
@@ -16,9 +16,6 @@ Usage
17
See the :doc:`api-reference` for full usage details.
18
19
-.. TODO - make this a doctest with hidden mock as setup
20
-.. TODO - run doctest on CI
21
-
22
.. code:: python
23
24
import io
lint.mk
@@ -57,3 +57,7 @@ linkcheck:
57
.PHONY: spelling
58
spelling:
59
$(MAKE) -C docs/ spelling SPHINXOPTS=$(SPHINXOPTS)
60
+
61
+.PHONY: doctest
62
+doctest:
63
+ $(MAKE) -C docs/ doctest SPHINXOPTS=$(SPHINXOPTS)
0 commit comments