You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyproject.toml
+33-15Lines changed: 33 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -124,25 +124,43 @@ pythonpath = [
124
124
addopts = "--doctest-modules"
125
125
126
126
[tool.taskipy.tasks]
127
-
# LINTING
127
+
# MAIN COMMANDS
128
+
test = "poetry run task _check && poetry run task _pytest_local"
129
+
site = "poetry run task _build_site && echo 'Site built successfully! Run `poetry run task serve` to preview.' || echo 'Site build failed. Run `poetry run task _build_site` for detailed logs.'"
130
+
docs = "mkdocs serve"
131
+
serve = "python -m http.server --directory site 8008"
0 commit comments