From ef2279a26ad948cbeb302674ca142a24e23f1fd9 Mon Sep 17 00:00:00 2001 From: "Eugeniy E. Mikhailov" Date: Sun, 14 Jul 2024 21:53:18 -0400 Subject: added tox setup for testing --- tox.ini | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tox.ini (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..13057e4 --- /dev/null +++ b/tox.ini @@ -0,0 +1,17 @@ +[tox] +skipsdist = True + +[testenv] +basepython = python3 + +[testenv:flake8] +description = lint with flake8 +deps = flake8 +commands = flake8 --max-line-length=88 + +[testenv:pytest] +description = test cases +usedevelop = True +deps = pytest +commands = pytest + -- cgit v1.2.3