From 81b64c525c8763cc75ed15ed92cffe64aa688689 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Thu, 28 Jul 2022 10:07:21 +0200 Subject: [PATCH] Core: add tox for testing --- tox.ini | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..b6efdaf --- /dev/null +++ b/tox.ini @@ -0,0 +1,11 @@ +[tox] +isolated_build = True +envlist = py310 + +[testenv] +deps = + black + pytest +commands = + black --check bopytex + pytest .