From ad2612b6cf2a0584d2232f57caa0e6759da0a99b Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Thu, 13 May 2021 09:39:46 +0200
Subject: [PATCH] [ci] #165: Run checks by calling directly the tools without
 the makefile

Without 'poetry run', which uses the tools installed on the image
To get rid of the makefile
---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e155c36..487dc09 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -32,7 +32,7 @@ format:
     - .code_changes
   stage: checks
   script:
-    - make check-format
+    - black --check duniterpy tests examples
 
 build:
   extends:
@@ -53,7 +53,7 @@ type:
     - .code_changes
   stage: checks
   script:
-    - make mypy
+    - mypy duniterpy tests examples --ignore-missing-imports
 
 lint:
   extends:
@@ -61,7 +61,7 @@ lint:
   stage: checks
   tags: [redshift]
   script:
-    - make pylint
+    - pylint duniterpy tests examples
 
 .tests:
   extends: .changes
-- 
GitLab