-
-
Notifications
You must be signed in to change notification settings - Fork 8
style: update color from #00a893 to #3badda #309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -53,7 +53,7 @@ def coverage(session): | |||||
| @nox.session() | ||||||
| def docs(session): | ||||||
| session.install(".[docs]") | ||||||
| session.run("sphinx-build", "-E", "-W", "-b", "html", "docs", "_build/html") | ||||||
| session.run("sphinx-build", "-E", "-b", "html", "docs", "_build/html") | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion | 🟠 Major 🧩 Analysis chainVerify the necessity of removing the The Consider keeping the 🏁 Script executed: #!/bin/bash
# Description: Check if there are current Sphinx warnings that would fail with -W
# Run sphinx-build to see if there are any warnings
cd docs
sphinx-build -W -E -b html . ../_build/html 2>&1 | tee /tmp/sphinx_warnings.txt
# Check if there were warnings
if grep -i "warning" /tmp/sphinx_warnings.txt; then
echo "===== Warnings found that would fail with -W flag ====="
grep -i "warning" /tmp/sphinx_warnings.txt
else
echo "===== No warnings found - keeping -W flag is recommended ====="
fiLength of output: 162 🏁 Script executed: #!/bin/bash
# Description: Directly check for Sphinx warnings with -W
sphinx-build -W -E -b html docs _build/html 2>&1 | grep -i warning || echo "===== No warnings found ====="Length of output: 29 Re-add Documentation builds cleanly with no warnings; dropping - session.run("sphinx-build", "-E", "-b", "html", "docs", "_build/html")
+ session.run("sphinx-build", "-W", "-E", "-b", "html", "docs", "_build/html")📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
|
|
||||||
|
|
||||||
| @nox.session(name="docs-live") | ||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.