From 66e5e3483396ee13babfb983a18ccd47a733bbc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20OLIVIER?= <cedric3.olivier@orange.com> Date: Fri, 24 Nov 2023 20:41:07 +0100 Subject: [PATCH] doc(typo): fix typo in documentation [skip-ci] --- README.md | 4 ++-- kicker.json | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ba8fb84..0169593 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ It is bound to the `build` stage, it is **disabled by default** and can be enabl ### Lint jobs -#### `py-pylint` job +#### `py-lint` job This job is **disabled by default** and performs code analysis based on [pylint](http://pylint.pycqa.org/en/latest/) Python lib. It is activated by setting `$PYLINT_ENABLED` to `true`. @@ -153,7 +153,7 @@ In addition to a textual report in the console, this job produces the following | `$PYTHON_PROJECT_DIR/reports/TEST-*.xml` | [xUnit](https://en.wikipedia.org/wiki/XUnit) test report(s) | [GitLab integration](https://docs.gitlab.com/ee/ci/yaml/artifacts_reports.html#artifactsreportsjunit) & [SonarQube integration](https://docs.sonarqube.org/latest/analysis/test-coverage/test-execution-parameters/#header-8) | | `$PYTHON_PROJECT_DIR/reports/py-coverage.cobertura.xml` | [Cobertura XML](https://gcovr.com/en/stable/output/cobertura.html) coverage report | [GitLab integration](https://docs.gitlab.com/ee/ci/yaml/artifacts_reports.html#artifactsreportscoverage_report) & [SonarQube integration](https://docs.sonarqube.org/latest/analysis/test-coverage/python-test-coverage/) | -#### `py-nosetest` job +#### `py-nosetests` job This job is **disabled by default** and performs tests based on [nose](https://nose.readthedocs.io/en/latest/) Python lib. It is activated by setting `$NOSETESTS_ENABLED` to `true`. diff --git a/kicker.json b/kicker.json index c00be26..e1a4f7f 100644 --- a/kicker.json +++ b/kicker.json @@ -58,8 +58,8 @@ "enable_with": "PYTHON_PACKAGE_ENABLED" }, { - "id": "pylint", - "name": "pylint", + "id": "py-lint", + "name": "py-lint", "description": "Code analysis based on [pylint](http://pylint.pycqa.org/en/latest/) Python lib.", "enable_with": "PYLINT_ENABLED", "variables": [ @@ -102,8 +102,8 @@ ] }, { - "id": "nosetest", - "name": "nosetest", + "id": "py-nosetests", + "name": "py-nosetests", "description": "Unit tests based on [nose](https://nose.readthedocs.io/) framework", "enable_with": "NOSETESTS_ENABLED", "variables": [ -- GitLab