[skip ci] exclude .venv folder from isort

This commit is contained in:
Robert Kaussow 2021-01-03 21:43:56 +01:00
parent 0212d066ef
commit a4e876d24f
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,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 = "corenetworks --cov=corenetworks --cov-report=xml:coverage.xml --cov-report=term --cov-append --no-cov-on-fail"