diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | tox.ini | 17 |
2 files changed, 18 insertions, 0 deletions
@@ -5,3 +5,4 @@ data/ .fuse_* build/ doc_generator/autoapi/ +.tox/ @@ -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 + |