From b241d2310a0288a462ea1b2c6a92a7222696726a Mon Sep 17 00:00:00 2001 From: ilai Date: Tue, 24 Oct 2023 17:52:07 +0300 Subject: [PATCH] [CI] Don't run flake8 on .venv To allow local installation in CI --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 17e812c5..8a767ceb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ build-backend = "poetry.core.masonry.api" [tool.mypy] allow_redefinition = true -exclude = ['tests'] +exclude = ['tests', '.venv'] [[tool.mypy.overrides]] module = [ @@ -61,6 +61,7 @@ ignore_missing_imports = true per-file-ignores = [ '*/__init__.py:F401', ] +exclude = ['.venv'] max-line-length = 88 [tool.poetry.scripts]