mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-23 04:37:15 +00:00
![dependabot-preview[bot]](/assets/img/avatar_default.png)
* Bump pytest from 4.6.3 to 5.0.1 Bumps [pytest](https://github.com/pytest-dev/pytest) from 4.6.3 to 5.0.1. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/4.6.3...5.0.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Update tox.ini
20 lines
326 B
INI
20 lines
326 B
INI
[tox]
|
|
envlist = lint, tests
|
|
|
|
[testenv]
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/requirements_tests.txt
|
|
|
|
[testenv:lint]
|
|
basepython = python3
|
|
ignore_errors = True
|
|
commands =
|
|
flake8 hassio
|
|
pylint --rcfile pylintrc hassio
|
|
|
|
[testenv:tests]
|
|
basepython = python3
|
|
commands =
|
|
pytest --timeout=10 tests
|