From 6b607c1279e47c6dd08143f76d633e252abf5c34 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 26 Jun 2017 12:32:48 -0600 Subject: [PATCH] Add tox.ini with flake8 job Signed-off-by: Zack Cerza --- tox.ini | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..a72f7c3 --- /dev/null +++ b/tox.ini @@ -0,0 +1,8 @@ +[tox] +skipsdist = True + +[testenv:flake8] +install_command = pip install --upgrade {opts} {packages} +deps= + flake8 +commands=flake8 --select=F,E9 {posargs:*.py collectors tests} -- 2.47.3