Skip to content

Commit

Permalink
chore: drop 'docgen' nox session (#914)
Browse files Browse the repository at this point in the history
No longer run by default, and leaves the environment fouled.

Closes #636.
  • Loading branch information
tseaver authored Nov 9, 2021
1 parent 47d4da6 commit 3a01950
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,23 +115,6 @@ def cover(session):
session.run("coverage", "report", "--show-missing", "--fail-under=100")


@nox.session(python="3.7")
def docgen(session):
session.env["SPHINX_APIDOC_OPTIONS"] = "members,inherited-members,show-inheritance"
session.install("-r", "testing/requirements.txt")
session.install("sphinx")
session.install("-e", ".")
session.run("rm", "-r", "docs/reference")
session.run(
"sphinx-apidoc",
"--output-dir",
"docs/reference",
"--separate",
"--module-first",
"google",
)


@nox.session(python="3.8")
def docs(session):
"""Build the docs for this library."""
Expand Down

0 comments on commit 3a01950

Please sign in to comment.