Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
[CI] Don't run flake8 on .venv
Browse files Browse the repository at this point in the history
To allow local installation in CI
  • Loading branch information
igiloh-pinecone committed Oct 24, 2023
1 parent 722e26e commit b241d23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ build-backend = "poetry.core.masonry.api"

[tool.mypy]
allow_redefinition = true
exclude = ['tests']
exclude = ['tests', '.venv']

[[tool.mypy.overrides]]
module = [
Expand All @@ -61,6 +61,7 @@ ignore_missing_imports = true
per-file-ignores = [
'*/__init__.py:F401',
]
exclude = ['.venv']
max-line-length = 88

[tool.poetry.scripts]
Expand Down

0 comments on commit b241d23

Please sign in to comment.