From d8bb2035e4f23f649c1ae512c8f3acf1e4c3a92b Mon Sep 17 00:00:00 2001 From: Joakim Soderlund Date: Sat, 28 Jan 2017 20:56:59 +0100 Subject: [PATCH] Add Tox configuration --- tox.ini | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..12471d7 --- /dev/null +++ b/tox.ini @@ -0,0 +1,22 @@ +[tox] +envlist = + py35 + py36 + flake + +[testenv] +commands = py.test +deps = + -rrequirements.txt + pytest + +[pytest] +addopts = --ignore tests/test_fetchers.py + +[testenv:flake] +commands = flake8 fimfarchive tests +deps = flake8 + +[flake8] +filenames = *.py +exclude = fimfarchive/__init__.py