From 0e08e06d10c6da6d27f1662b10896e7da7b0fe72 Mon Sep 17 00:00:00 2001 From: Andrea Righi Date: Fri, 24 Nov 2023 11:07:06 +0100 Subject: [PATCH] tests: add tox configuration to automate unit testing Signed-off-by: Andrea Righi --- tox.ini | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..90d98fd --- /dev/null +++ b/tox.ini @@ -0,0 +1,8 @@ +[tox] +envlist = py311 # Add other Python versions as needed + +[testenv] +deps = + pytest +commands = + pytest -- 2.31.1