mirror of
https://github.com/home-assistant/core.git
synced 2025-08-04 21:25:13 +02:00
Add workaround for running tox on Windows platforms (#11188)
* Add workaround for running tox on Windows platforms * Remove install_command override
This commit is contained in:
committed by
Fabian Affolter
parent
8efc4b5ba9
commit
81f1a65fae
6
tox.ini
6
tox.ini
@@ -18,7 +18,7 @@ deps =
|
||||
-c{toxinidir}/homeassistant/package_constraints.txt
|
||||
|
||||
[testenv:pylint]
|
||||
basepython = python3
|
||||
basepython = {env:PYTHON3_PATH:python3}
|
||||
ignore_errors = True
|
||||
deps =
|
||||
-r{toxinidir}/requirements_all.txt
|
||||
@@ -28,7 +28,7 @@ commands =
|
||||
pylint homeassistant
|
||||
|
||||
[testenv:lint]
|
||||
basepython = python3
|
||||
basepython = {env:PYTHON3_PATH:python3}
|
||||
deps =
|
||||
-r{toxinidir}/requirements_test.txt
|
||||
commands =
|
||||
@@ -37,7 +37,7 @@ commands =
|
||||
pydocstyle homeassistant tests
|
||||
|
||||
[testenv:typing]
|
||||
basepython = python3
|
||||
basepython = {env:PYTHON3_PATH:python3}
|
||||
deps =
|
||||
-r{toxinidir}/requirements_test.txt
|
||||
commands =
|
||||
|
Reference in New Issue
Block a user