From 90c11cafa200c73363b7f6f84b9477780d259315 Mon Sep 17 00:00:00 2001 From: okhleif-IL <87550612+okhleif-IL@users.noreply.github.com> Date: Tue, 14 Mar 2023 14:19:30 -0700 Subject: [PATCH] Flake8 now runs linter on TLT and Tests folders simultaneously (#241) * Initial commit for markdown * Linter now checks tlt and tests at the same time * delete accidentally committed doc --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a172003..ea6f75c 100644 --- a/Makefile +++ b/Makefile @@ -60,8 +60,7 @@ integration: tlt_test_venv lint: tlt_test_venv @echo "Style checks..." - @. $(ACTIVATE_TEST_VENV) && flake8 tlt - @. $(ACTIVATE_TEST_VENV) && flake8 tests + @. $(ACTIVATE_TEST_VENV) && flake8 tlt tests clean: rm -rf tlt_test_venv