From a287701d3c841c91633fc3214a8f5e616333f036 Mon Sep 17 00:00:00 2001 From: Max Chase Date: Thu, 11 Apr 2024 21:38:58 -0400 Subject: [PATCH] Set up basic testing with tox --- tox.ini | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..4c6f5ca --- /dev/null +++ b/tox.ini @@ -0,0 +1,18 @@ +[tox] +env_list = + py38 + py39 + py310 + py311 + py312 +minversion = 4.14.2 +skip_missing_interpreters = true + +[testenv] +description = run the tests with pytest +package = wheel +wheel_build_env = .pkg +deps = + pytest>=6 +commands = + pytest {tty:--color=yes} --pyargs camel {posargs}