From e35e994ed9cc4992a5552565100b5804dd547cf2 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Wed, 8 Jun 2022 12:00:49 +0200 Subject: [PATCH] fix #40 - restore tox ini --- 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..0c32023 --- /dev/null +++ b/tox.ini @@ -0,0 +1,8 @@ +[tox] +# https://github.com/pytest-dev/apipkg/issues/40 +# this is to support https://src.fedoraproject.org/rpms/pyproject-rpm-macros/blob/rawhide/f/macros.pyproject#_171 +envlist=py37,py38,py39,py310,py311 +isolated_build = True +[testenv] +deps=pytest +commands=pytest []