Skip to content

Commit e6a6b04

Browse files
committed
Rename nox task open-docs to docs:open
1 parent 00b331e commit e6a6b04

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/user_guide/getting_started.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Build and open the documentation:
7171

7272
.. code-block:: shell
7373
74-
nox -s docs:build open-docs
74+
nox -s docs:build docs:open
7575
7676
Execute the unit tests of the project:
7777

@@ -192,7 +192,7 @@ You are ready to use the toolbox. With *nox -l* you can list all available tasks
192192
- integration-tests -> Runs the all integration tests
193193
- coverage -> Runs all tests (unit + integration) and reports the code coverage
194194
- docs:build -> Builds the project documentation
195-
- open-docs -> Opens the built project documentation
195+
- docs:open -> Opens the built project documentation
196196
- clean-docs -> Removes the documentations build folder
197197
- report -> Collects and generates a metrics summary for the workspace
198198

exasol/toolbox/nox/_documentation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def build_docs(session: Session) -> None:
4848
_build_docs(session, PROJECT_CONFIG)
4949

5050

51-
@nox.session(name="open-docs", python=False)
51+
@nox.session(name="docs:open", python=False)
5252
def open_docs(session: Session) -> None:
5353
"""Opens the built project documentation"""
5454
docs_folder = PROJECT_CONFIG.root / DOCS_OUTPUT_DIR

0 commit comments

Comments
 (0)