From 2f8345be9cb1a9deaa6f379497c6c161b9db04b9 Mon Sep 17 00:00:00 2001 From: Emanuele Bellocchia <54482000+ebellocchia@users.noreply.github.com> Date: Mon, 12 Feb 2024 14:31:38 +0100 Subject: [PATCH] Add requirements install --- analyze_code.bat | 2 ++ analyze_code.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/analyze_code.bat b/analyze_code.bat index 2960804a..2df43329 100644 --- a/analyze_code.bat +++ b/analyze_code.bat @@ -1,3 +1,5 @@ +pip install -r requirements-dev.txt + isort . flake8 . mypy . diff --git a/analyze_code.sh b/analyze_code.sh index d570a6cd..1fb242ae 100644 --- a/analyze_code.sh +++ b/analyze_code.sh @@ -1,5 +1,7 @@ #!/bin/bash +pip install -r requirements-dev.txt + isort . flake8 . mypy .