We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4a2ad6 commit d1fc3a3Copy full SHA for d1fc3a3
2 files changed
.readthedocs.yaml
@@ -6,7 +6,8 @@ build:
6
python: "3.10"
7
jobs:
8
pre_build:
9
- - cd docs && make apidocs && cd ..
+ - sphinx-apidoc -fo docs/api typed_python typed_python/*test* typed_python/*/*test*
10
+
11
12
python:
13
install:
docs/Makefile
@@ -1,4 +1,7 @@
1
# Minimal makefile for Sphinx documentation
2
+SHELL = /bin/bash
3
+# SHELL = /bin/zsh
4
+.SHELLFLAGS = -O globstar -c # enable globstar operator
5
# You can set these variables from the command line, and also
# from the environment for the first two.
@@ -15,7 +18,7 @@ help:
15
18
.PHONY: help clean apidocs Makefile
16
19
17
20
apidocs:
- @sphinx-apidoc -fo "$(APIBUILDDIR)" "$(MODULEDIR)" $(MODULEDIR)/*test* $(MODULEDIR)/*/*test*
21
+ @sphinx-apidoc -fo "$(APIBUILDDIR)" "$(MODULEDIR)" $(MODULEDIR)/**/*test*
22
23
clean:
24
-rm -rf "$(BUILDDIR)"/*
0 commit comments