From 2f3a4ad8b5977fe36328826b8c5c01de4ca0069a Mon Sep 17 00:00:00 2001 From: Shane Fontaine Date: Fri, 28 Dec 2018 20:28:40 -0800 Subject: [PATCH] Add tox ini file --- 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 0000000..3eb6b7f --- /dev/null +++ b/tox.ini @@ -0,0 +1,10 @@ +[tox] +envlist = py27, py35, py36 + +[testenv] +setenv = PYTHONPATH = . +deps = + -rrequirements-dev.txt +commands= + python -m pytest -m "not xfail" {posargs: "{toxinidir}/ethfinex/tests" --cov-config="{toxinidir}/tox.ini" --cov=ethfinex} + python -m pytest -m "xfail" {posargs: "{toxinidir}/ethfinex/tests" \ No newline at end of file