Commit fa5d0141 authored by Remi Cresson's avatar Remi Cresson
Browse files

CI: use pip packages instead of apt

1 merge request!10Update Dockerfile
Pipeline #49339 passed with stages
in 56 minutes and 47 seconds
This commit is part of merge request !10. Comments created here will be created in the context of that merge request.
Showing with 3 additions and 3 deletions
+3 -3
...@@ -57,17 +57,17 @@ Build the docker image: ...@@ -57,17 +57,17 @@ Build the docker image:
flake8: flake8:
extends: .static_analysis_base extends: .static_analysis_base
script: script:
- sudo apt update && sudo apt install -y flake8 && python -m flake8 --ignore=E402 --max-line-length=120 $PWD/decloud - pip install flake8 && flake8 --ignore=E402 --max-line-length=120 $PWD/decloud
pylint: pylint:
extends: .static_analysis_base extends: .static_analysis_base
script: script:
- sudo apt update && sudo apt install -y pylint && pylint --disable=too-many-nested-blocks,too-many-locals,too-many-statements,too-few-public-methods,too-many-instance-attributes,too-many-arguments,invalid-name,cell-var-from-loop,too-many-branches,too-many-ancestors --ignored-modules=tensorflow,git,rtree,scipy,tensorboard,libamalthee,pandas --max-line-length=120 $PWD/decloud - pip install pylint && pylint --disable=too-many-nested-blocks,too-many-locals,too-many-statements,too-few-public-methods,too-many-instance-attributes,too-many-arguments,invalid-name,cell-var-from-loop,too-many-branches,too-many-ancestors --ignored-modules=tensorflow,git,rtree,scipy,tensorboard,libamalthee,pandas --max-line-length=120 $PWD/decloud
codespell: codespell:
extends: .static_analysis_base extends: .static_analysis_base
script: script:
- sudo pip install codespell && codespell --skip="*.png,*.template,*.pbs,*.jpg,*git/lfs*" - pip install codespell && codespell --skip="*.png,*.template,*.pbs,*.jpg,*git/lfs*"
.applications_test_base: .applications_test_base:
image: $TEST_IMAGE_NAME image: $TEST_IMAGE_NAME
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment