'tox' allows running python tests under multiple environments. Note that installing python versions is outside the scope of tox. Signed-off-by: Rob Herring <robh@xxxxxxxxxx> --- tox.ini | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 000000000000..7925d1e2f390 --- /dev/null +++ b/tox.ini @@ -0,0 +1,6 @@ +[tox] +envlist = py36,py37,py38,py39,py310 + +[testenv] +deps = pytest +commands = pytest -- 2.32.0