Skip to content

Commit

Permalink
tox.ini is refined and venv added to exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
sametd committed Dec 14, 2023
1 parent d57b857 commit 44b435e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[flake8]
max-line-length = 120
show-source = true
exclude = .*
exclude = .*,venv
extend-ignore = E203
[isort]
profile=black
skip_glob=.*
skip = venv
skip_glob = .*
[tox]
envlist = py36, quality
[testenv]
deps =
pytest
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
deps = pytest
passenv = http_proxy,HTTP_PROXY,https_proxy,HTTPS_PROXY,no_proxy,NO_PROXY
commands =
pip install -e aviso-server/monitoring
pip install -e aviso-server/rest
Expand All @@ -26,5 +26,5 @@ deps =
flake8
commands =
isort --check .
black --check .
black --check --exclude /venv/ --exclude .* .
flake8 .

0 comments on commit 44b435e

Please sign in to comment.