From 06f31cf1e72ec58bfb39da649d634ec1a7a2d494 Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Sat, 27 Apr 2019 13:00:24 +0200 Subject: [PATCH] [mod] Makefile: use python3 module to run tests and type check --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4d1db970..4112ba3d 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,8 @@ docs: # run tests tests: - python -m unittest ${test_filter} + python3 -m unittest # check static typing check: - mypy duniterpy --ignore-missing-imports + python3 -m mypy duniterpy --ignore-missing-imports -- GitLab