From 26cf3686504432c21561bec13472b02fb68245e1 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 3 Jan 2021 21:43:56 +0100 Subject: [PATCH] [skip ci] exclude .venv folder from isort --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 69625eb..c3f79da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -80,7 +80,7 @@ default_section = "THIRDPARTY" force_single_line = true line_length = 99 sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"] -skip_glob = ["**/.env*", "**/env/*", "**/docs/*"] +skip_glob = ["**/.env*", "**/env/*", "**/.venv/*", "**/docs/*"] [tool.pytest.ini_options] addopts = "ansibledoctor --cov=ansibledoctor --cov-report=xml:coverage.xml --cov-report=term --cov-append --no-cov-on-fail"