diff --git a/README.md b/README.md
index ba8fb843e92bcf20dba3a1765bcb1655fe9090d1..0169593d63d805d0879a9799ba9b6512a235c834 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 c00be26693438b5385eaf2fba58bdb820938aacc..e1a4f7f0bd7313c5195994a1c42d89a26b6b93ae 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": [