From fcad07d9c725788ca66984ace1bfe18db3f56a3a Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Sun, 6 Oct 2019 16:59:44 +0200 Subject: [PATCH] [mod] #66: Call directly commands instead of passing by a make rule - make not installed on the Docker images --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3001b384..c6dd12f2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,7 +48,7 @@ format: stage: format image: $DOCKER_IMAGE/3.8:latest script: - - make check-format + - black --check duniterpy tests examples test: extends: @@ -56,7 +56,7 @@ test: stage: test script: - poetry install --no-dev - - make tests + - poetry run python3 -m unittest check: extends: @@ -64,8 +64,8 @@ check: stage: test script: - poetry install - - make mypy - - make pylint + - poetry run mypy --ignore-missing-imports . + - poetry run pylint --disable=C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 duniterpy tests/ examples/ build: extends: -- GitLab