Skip to content

Commit b4d4d53

Browse files
committed
Rename nox task clean-docs to docs:clean
1 parent e6a6b04 commit b4d4d53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/user_guide/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ You are ready to use the toolbox. With *nox -l* you can list all available tasks
193193
- coverage -> Runs all tests (unit + integration) and reports the code coverage
194194
- docs:build -> Builds the project documentation
195195
- docs:open -> Opens the built project documentation
196-
- clean-docs -> Removes the documentations build folder
196+
- docs:clean -> Removes the documentations build folder
197197
- report -> Collects and generates a metrics summary for the workspace
198198
199199
sessions marked with * are selected, sessions marked with - are skipped.

exasol/toolbox/nox/_documentation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def open_docs(session: Session) -> None:
5959
webbrowser.open_new_tab(index.as_uri())
6060

6161

62-
@nox.session(name="clean-docs", python=False)
62+
@nox.session(name="docs:clean", python=False)
6363
def clean_docs(_session: Session) -> None:
6464
"""Removes the documentations build folder"""
6565
docs_folder = PROJECT_CONFIG.root / DOCS_OUTPUT_DIR

0 commit comments

Comments
 (0)