From f154ee231de40d30ec441bf2ba039c77cfae36ba Mon Sep 17 00:00:00 2001 From: Romain Deville <code@romaindeville.fr> Date: Fri, 16 Apr 2021 19:22:56 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=E2=80=8D=20Add=20tox=20format=5F{p?= =?UTF-8?q?ython,shell}=20jobs=20to=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bbdfad2..be38de5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -165,28 +165,28 @@ variables: # ============================================================================= # Jobs in test stage # ----------------------------------------------------------------------------- -#test_tox_format_python: -# <<: *tag_docker -# <<: *image_docker -# <<: *stage_test -# <<: *before_script_python_dependencies -# script: -# # Install python tox -# - pip3 install tox -# # Run tox -# - tox -e format_python -# -#test_tox_format_shell: -# <<: *tag_docker -# <<: *image_docker -# <<: *stage_test -# <<: *before_script_python_dependencies -# script: -# # Install python tox -# - pip3 install tox -# # Run tox -# - tox -e format_shell -# +test_tox_format_python: + <<: *tag_docker + <<: *image_docker + <<: *stage_test + <<: *before_script_python_dependencies + script: + # Install python tox + - pip3 install tox + # Run tox + - tox -e format_python + +test_tox_format_shell: + <<: *tag_docker + <<: *image_docker + <<: *stage_test + <<: *before_script_python_dependencies + script: + # Install python tox + - pip3 install tox + # Run tox + - tox -e format_shell + # ***************************************************************************** # VIM MODELINE # vim: fdm=indent -- GitLab