1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/dist/tools/compile_and_test_for_board/tox.ini
Gaëtan Harter 998211d738
tools/compile_and_test_for_board: add tests directory
Tests in `tests` will be used by 'tox'.
2019-02-28 13:45:40 +01:00

28 lines
487 B
INI

[tox]
envlist = test,lint,flake8
skipsdist = True
[testenv]
basepython = python3
setenv =
script = compile_and_test_for_board.py
commands =
test: {[testenv:test]commands}
lint: {[testenv:lint]commands}
flake8: {[testenv:flake8]commands}
[testenv:test]
deps = pytest
commands =
pytest -v --doctest-modules
[testenv:lint]
deps = pylint
commands =
pylint {env:script} tests
[testenv:flake8]
deps = flake8
commands =
flake8 {env:script} tests