We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d835219 commit f4a2ad6Copy full SHA for f4a2ad6
2 files changed
.readthedocs.yaml
@@ -6,8 +6,7 @@ build:
6
python: "3.10"
7
jobs:
8
pre_build:
9
- - sphinx-apidoc -fo docs/api typed_python typed_python/**/*test*
10
-
+ - cd docs && make apidocs && cd ..
11
12
python:
13
install:
docs/Makefile
@@ -1,7 +1,4 @@
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.
@@ -18,7 +15,7 @@ help:
18
15
.PHONY: help clean apidocs Makefile
19
16
20
17
apidocs:
21
- @sphinx-apidoc -fo "$(APIBUILDDIR)" "$(MODULEDIR)" $(MODULEDIR)/**/*test*
+ @sphinx-apidoc -fo "$(APIBUILDDIR)" "$(MODULEDIR)" $(MODULEDIR)/*test* $(MODULEDIR)/*/*test*
22
23
clean:
24
-rm -rf "$(BUILDDIR)"/*
0 commit comments