Commit 08ce06bc authored by Ruben ten Hove's avatar Ruben ten Hove
Browse files

Merge branch 'lizard' into 'main'

feat: lizard

See merge request just-ci/templates!149
parents c819489a 851528ed
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4,3 +4,4 @@ include:
  - local: python/pycln.yml
  - local: python/pylint.yml
  - local: python/pytest.yml
  - local: python/lizard.yml

python/lizard.yml

0 → 100644
+15 −0
Original line number Diff line number Diff line
---
include:
  - local: python/generic.yml

variables:
  LIZARD_DEFAULT_ARGS: --verbose -Eduplicate --exclude ${PYTHON_EXCLUDE_PATHS}

python:lizard:
  extends: .python:pre
  variables:
    JOB_PACKAGE: lizard
  script:
    - !reference [".python:pre", script]
    - lizard -t $(nproc) ${LIZARD_DEFAULT_ARGS} ${LIZARD_EXTRA_ARGS}
  needs: []