Commit 8a52548d authored by Federico Falconieri's avatar Federico Falconieri
Browse files

fix: include local->remote python jobs

parent f912a641
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
# bandit performs static security analysis of python packages
# https://bandit.readthedocs.io/en/latest/
include:
  - local: python/generic.yml
  - remote: "https://gitlab.com/just-ci/templates/-/raw/v6.0.0/python/generic.yml"

variables:
  BANDIT_SKIP_CHECK: "" # Comma separated, i.e.: B101,B703
+1 −1
Original line number Diff line number Diff line
---
include:
  - local: python/generic.yml
  - remote: "https://gitlab.com/just-ci/templates/-/raw/v6.0.0/python/generic.yml"

python:build:
  extends: .python:pre
+1 −1
Original line number Diff line number Diff line
---
include:
  - local: python/generic.yml
  - remote: "https://gitlab.com/just-ci/templates/-/raw/v6.0.0/python/generic.yml"

python:flake8:
  stage: test
+1 −1
Original line number Diff line number Diff line
---
# https://dwheeler.com/flawfinder/
include:
  - local: python/generic.yml
  - remote: "https://gitlab.com/just-ci/templates/-/raw/v6.0.0/python/generic.yml"

python:flawfinder:
  extends: .python:pre
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
# isort profile=black format, for black compatibility
# https://github.com/PyCQA/isort
include:
  - local: python/generic.yml
  - remote: "https://gitlab.com/just-ci/templates/-/raw/v6.0.0/python/generic.yml"

python:isort:
  extends: .python:pre
Loading