1
0
mirror of https://github.com/tektoncd/catalog.git synced 2024-11-28 06:30:40 +00:00
catalog/task/pylint/0.2
vinamra28 d65ed39437 Use git-clone 0.7 instead of latest in Tasks' test
With git-clone version 0.8, Task now runs as non-root and with this change I
guess it's not working well with our GKE clusters and tests started
failing in nightly runs.

For now changing the version of git-clone to use 0.7 so that for now CI
is unblocked 😅

Signed-off-by: vinamra28 <jvinamra776@gmail.com>
2022-09-27 15:05:12 +02:00
..
tests Use git-clone 0.7 instead of latest in Tasks' test 2022-09-27 15:05:12 +02:00
pylint.yaml Add linux/amd64 platform annotation to the rest of the tasks 2021-10-29 17:08:38 +01:00
README.md [TEP-0110] Update Tekton Catalog installation instructions 2022-08-16 16:25:52 +01:00

pylint

The task provides linting based on pylint for Python.

Install the Task

Workspaces

  • source: A Workspace volume containing the python code.

Install the pylint task

kubectl apply -f https://api.hub.tekton.dev/v1/resource/tekton/task/pylint/0.2/raw

Parameters

  • args: The arguments to be passed to the pylint CLI. This parameter is required to run this task. (Default: [""])
  • path: The path to the module which should be analysed by pylint. (Default: ".")
  • requirements_file: The path to the requirements file to pip install for your application to be checked. (Default: "requirements.txt")

Platforms

The Task can be run on linux/amd64 platform.

Usage

This TaskRun runs pylint in a python module directory called module/.

apiVersion: tekton.dev/v1beta1
kind: TaskRun
metadata:
  name: lint
spec:
  taskRef:
    name: pylint
  workspaces:
  - name: source
    volumeClaimTemplate:
      spec:
        accessModes:
          - ReadWriteOnce
        resources:
          requests:
            storage: 100Mi
  params:
  - name: args
    value: ["-r", "y"]
  - name: path
    value: "module/"