From 92b5788f79e31b98724fbf20425dfe4bc7427a8e Mon Sep 17 00:00:00 2001 From: Dmitry Kovalenko Date: Sun, 2 Nov 2025 16:30:11 +0300 Subject: [PATCH] CI checks codestyle (flake8) --- run_tests3.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/run_tests3.sh b/run_tests3.sh index f3deb0f..e7568d0 100755 --- a/run_tests3.sh +++ b/run_tests3.sh @@ -10,8 +10,12 @@ rm -rf $VENV_PATH python -m venv "${VENV_PATH}" export VIRTUAL_ENV_DISABLE_PROMPT=1 source "${VENV_PATH}/bin/activate" -pip install pytest pytest-xdist +pip install flake8 pytest pytest-xdist +# Codestyle is checked +flake8 + +# Functional is tested python -m pytest -l -v -n 4 set +eux