Skip to content

Commit 28098b4

Browse files
committed
Rename task integration-tests to test:integration
1 parent ef0d42c commit 28098b4

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
@@ -194,8 +194,8 @@ You are ready to use the toolbox. With *nox -l* you can list all available tasks
194194
- lint:security -> Runs the security linter on the project
195195
- project:report -> Collects and generates metrics summary for the workspace
196196
- release:prepare -> Prepares the project for a new release.
197-
- unit-tests -> Runs all unit tests
198-
- integration-tests -> Runs the all integration tests
197+
- test:unit -> Runs all unit tests
198+
- test:integration -> Runs the all integration tests
199199
- coverage -> Runs all tests (unit + integration) and reports the code coverage
200200
- check -> Runs all available checks on the project
201201

exasol/toolbox/nox/_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def unit_tests(session: Session) -> None:
7979
_unit_tests(session, PROJECT_CONFIG, context)
8080

8181

82-
@nox.session(name="integration-tests", python=False)
82+
@nox.session(name="test:integration", python=False)
8383
def integration_tests(session: Session) -> None:
8484
"""
8585
Runs the all integration tests

0 commit comments

Comments
 (0)