From 0a6543d3556521d25936cade49f5456d30f6f092 Mon Sep 17 00:00:00 2001 From: Daniel Schwarz Date: Wed, 18 Jan 2023 21:07:27 -0500 Subject: [PATCH] Ignore venv folder for flake8 and vermin tests --- .flake8 | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.flake8 b/.flake8 index 603b785..21fd7bd 100644 --- a/.flake8 +++ b/.flake8 @@ -1,4 +1,4 @@ [flake8] -exclude=build,tests,tmp,toot/tui/scroll.py +exclude=build,tests,tmp,venv,toot/tui/scroll.py ignore=E128 max-line-length=120 diff --git a/Makefile b/Makefile index 6b7ddf9..c1aaa5f 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ publish : test: pytest -v flake8 - vermin --target=3.6 --no-tips --violations . + vermin --target=3.6 --no-tips --violations --exclude-regex venv/.* . coverage: coverage erase