tools/compile_and_test_for_board: add tests directory

Tests in `tests` will be used by 'tox'.
This commit is contained in:
Gaëtan Harter 2019-02-28 13:39:27 +01:00
parent 94aeb5a223
commit 998211d738
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B
2 changed files with 3 additions and 3 deletions

View File

@ -14,14 +14,14 @@ commands =
[testenv:test]
deps = pytest
commands =
pytest -v --doctest-modules {env:script}
pytest -v --doctest-modules
[testenv:lint]
deps = pylint
commands =
pylint {env:script}
pylint {env:script} tests
[testenv:flake8]
deps = flake8
commands =
flake8 {env:script}
flake8 {env:script} tests