Commit 48ee280e authored by Elisabetta Giani's avatar Elisabetta Giani
Browse files

fix_artifacts: fix linting issues.

parent 97a67fd0
Loading
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -79,15 +79,21 @@ test:csp-lmc-common:
    - cd $BUILD_PATH  
    - make test

linting:csp-lmc-common:
  extends: .test_common
.linting:
  stage: linting
  dependencies: []
  script:
    - apt-get -y update
    - apt-get install -y python3-pip python3-setuptools python3-wheel --no-install-recommends
    - cd $BUILD_PATH  
    - make lint

linting:csp-lmc-common:
  extends: .linting
  dependencies: []
  variables:
      BUILD_PATH: csp-lmc-common

#
# Publish csp-lmc-common python package
#
+9 −2
Original line number Diff line number Diff line
@@ -83,15 +83,22 @@ test:csp-lmc-mid:
    - cd $BUILD_PATH  
    - make test

  linting:csp-lmc-mid:
  extends: .test
# linting stage
.linting:
  stage: linting
  dependencies: []
  script:
    - apt-get -y update
    - apt-get install -y python3-pip python3-setuptools python3-wheel --no-install-recommends
    - cd $BUILD_PATH  
    - make lint

linting:csp-lmc-mid:
  extends: .linting
  dependencies: []
  variables:
      BUILD_PATH: csp-lmc-mid

#
# Publish csp-lmc-mid python package
#