From bd05959143f1d71f9414604dea603a450323bc37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 1 Jun 2022 08:22:52 +0200 Subject: [PATCH] run-tests: drop broken shell escapes There are not shown properly in github actions, so let's not bother. --- run-tests.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/run-tests.nix b/run-tests.nix index f6f33ee..189198e 100644 --- a/run-tests.nix +++ b/run-tests.nix @@ -8,15 +8,15 @@ writeScript "run-tests" '' set -e PATH="''${PATH}''${PATH:+":"}${direnv}/bin" - echo -e "\x1b[32m## run shellcheck\x1b[0m" + echo run shellcheck ${shellcheck}/bin/shellcheck direnvrc - echo -e "\x1b[32m## run black\x1b[0m" + echo run black LC_ALL=en_US.utf-8 ${python3.pkgs.black}/bin/black --check . - echo -e "\x1b[32m## run flake8\x1b[0m" + echo run flake8 ${python3.pkgs.flake8}/bin/flake8 --ignore E501 tests - echo -e "\x1b[32m## run mypy\x1b[0m" + echo run mypy ${mypy}/bin/mypy tests - echo -e "\x1b[32m## run unittest\x1b[0m" + echo run unittest ${python3.pkgs.pytest}/bin/pytest . ''