From f4f04a43ec501a19250d259cbe3ef804b8a1633f Mon Sep 17 00:00:00 2001 From: William Silversmith Date: Mon, 27 Apr 2020 13:35:16 -0400 Subject: [PATCH] chore: make it easier to test by adding tox --- tox.ini | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 000000000..5a476d7c9 --- /dev/null +++ b/tox.ini @@ -0,0 +1,10 @@ +[tox] +envlist = py27,py36,py37,py38 + +[testenv] +deps = + numpy + +commands = + pip install -e .[test] + pytest -v -x test \ No newline at end of file