diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-06-07 22:59:57 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-06-07 22:59:57 +0200 |
commit | ecf050a59ac42c9cf7d12dab44dd51a341c916f2 (patch) | |
tree | 077d3e90d1bc25805112ce5aa234e965dceddec5 /noxfile.py | |
parent | 87ea75c803400ca74c4f1b863c496165ed802fc2 (diff) |
Removed docs pipeline in noxfile, reformatted code w black
Diffstat (limited to 'noxfile.py')
-rw-r--r-- | noxfile.py | 18 |
1 files changed, 0 insertions, 18 deletions
@@ -13,7 +13,6 @@ locations = ( "training", "tests", "noxfile.py", - "docs/conf.py", ) @@ -125,26 +124,9 @@ def typeguard(session: Session) -> None: session.run("pytest", f"--typeguard-packages={package}", *args) -@nox.session(python=["3.9"]) -def xdoctest(session: Session) -> None: - """Run examples with xdoctest.""" - args = session.posargs or ["all"] - session.run("poetry", "install", "--no-dev", external=True) - install_with_constraints(session, "xdoctest") - session.run("python", "-m", "xdoctest", package, *args) - - @nox.session(python="3.9") def coverage(session: Session) -> None: """Upload coverage data.""" install_with_constraints(session, "coverage[toml]", "codecov") session.run("coverage", "xml", "--fail-under=0") session.run("codecov", *session.posargs) - - -@nox.session(python="3.9") -def docs(session: Session) -> None: - """Build the documentation.""" - session.run("poetry", "install", "--no-dev", external=True) - install_with_constraints(session, "sphinx", "sphinx-autodoc-typehints") - session.run("sphinx-build", "docs", "docs/_build") |