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] [testenv:test]
deps = pytest deps = pytest
commands = commands =
pytest -v --doctest-modules {env:script} pytest -v --doctest-modules
[testenv:lint] [testenv:lint]
deps = pylint deps = pylint
commands = commands =
pylint {env:script} pylint {env:script} tests
[testenv:flake8] [testenv:flake8]
deps = flake8 deps = flake8
commands = commands =
flake8 {env:script} flake8 {env:script} tests