Skip to content
Snippets Groups Projects
Commit 66e5e348 authored by Cédric OLIVIER's avatar Cédric OLIVIER
Browse files

doc(typo): fix typo in documentation [skip-ci]

parent f1c448b7
Branches
Tags
No related merge requests found
...@@ -59,7 +59,7 @@ It is bound to the `build` stage, it is **disabled by default** and can be enabl ...@@ -59,7 +59,7 @@ It is bound to the `build` stage, it is **disabled by default** and can be enabl
### Lint jobs ### 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. 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`. 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 ...@@ -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/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/) | | `$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. 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`. It is activated by setting `$NOSETESTS_ENABLED` to `true`.
......
...@@ -58,8 +58,8 @@ ...@@ -58,8 +58,8 @@
"enable_with": "PYTHON_PACKAGE_ENABLED" "enable_with": "PYTHON_PACKAGE_ENABLED"
}, },
{ {
"id": "pylint", "id": "py-lint",
"name": "pylint", "name": "py-lint",
"description": "Code analysis based on [pylint](http://pylint.pycqa.org/en/latest/) Python lib.", "description": "Code analysis based on [pylint](http://pylint.pycqa.org/en/latest/) Python lib.",
"enable_with": "PYLINT_ENABLED", "enable_with": "PYLINT_ENABLED",
"variables": [ "variables": [
...@@ -102,8 +102,8 @@ ...@@ -102,8 +102,8 @@
] ]
}, },
{ {
"id": "nosetest", "id": "py-nosetests",
"name": "nosetest", "name": "py-nosetests",
"description": "Unit tests based on [nose](https://nose.readthedocs.io/) framework", "description": "Unit tests based on [nose](https://nose.readthedocs.io/) framework",
"enable_with": "NOSETESTS_ENABLED", "enable_with": "NOSETESTS_ENABLED",
"variables": [ "variables": [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment