From 998211d738f2e67e11dae6b3fcb0e6f3fb1a07e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Thu, 28 Feb 2019 13:39:27 +0100 Subject: [PATCH] tools/compile_and_test_for_board: add tests directory Tests in `tests` will be used by 'tox'. --- dist/tools/compile_and_test_for_board/tests/__init__.py | 0 dist/tools/compile_and_test_for_board/tox.ini | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 dist/tools/compile_and_test_for_board/tests/__init__.py diff --git a/dist/tools/compile_and_test_for_board/tests/__init__.py b/dist/tools/compile_and_test_for_board/tests/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/dist/tools/compile_and_test_for_board/tox.ini b/dist/tools/compile_and_test_for_board/tox.ini index b3c89b9cac..e55c7252e5 100644 --- a/dist/tools/compile_and_test_for_board/tox.ini +++ b/dist/tools/compile_and_test_for_board/tox.ini @@ -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