Skip to content

Commit

Permalink
pixi toml with working doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaapel committed Sep 4, 2024
1 parent 2e19cd4 commit 6f82595
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ docker-publish = { depends_on = [
] }
docker-clean = { cmd = ["docker", "system", "prune", "-f"] }

docs-build = { cmd = ["sphinx-build", "docs", "docs/_build", "--builder", "doctest", "-W"] }
doctest = { cmd = ["sphinx-build","-M", "doctest", "docs", "docs/_build", "-W"] }
docs-build = { cmd = ["sphinx-build", "-M", "html", "docs", "docs/_build", "-W"], depends_on = ["doctest"] }
docs = { depends_on = ["docs-build"] } # alias
doc = { depends_on = ["docs-build"] } # alias
serve = { cmd = ["python", "-m", "http.server", "-d", "docs/_build/html"] }
Expand Down

0 comments on commit 6f82595

Please sign in to comment.