Skip to content

Commit

Permalink
[skip ci] exclude .venv folder from isort
Browse files Browse the repository at this point in the history
  • Loading branch information
xoxys committed Jan 3, 2021
1 parent 16db94d commit e9079d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ repository = "https://github.com/thegeeklab/git-batch/"
version = "0.0.0"

[tool.poetry.dependencies]
python = "^3.6.0"
GitPython = "^3.1.11"
colorama = "^0.4.4"
python = "^3.6.0"
python-json-logger = "^2.0.1"

[tool.poetry.dev-dependencies]
Expand Down Expand Up @@ -74,7 +74,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 = "gitbatch --cov=gitbatch --cov-report=xml:coverage.xml --cov-report=term --cov-append --no-cov-on-fail"
Expand Down

0 comments on commit e9079d0

Please sign in to comment.