From 5a145ed28b05c820acc7b4341e844c057cb9fc40 Mon Sep 17 00:00:00 2001 From: Manthan Keim Date: Mon, 15 Oct 2018 15:17:57 +0530 Subject: [PATCH] Add tox.ini tox.ini explains how to set up coala in tox properly. --- tox.ini | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..e7041c26 --- /dev/null +++ b/tox.ini @@ -0,0 +1,15 @@ +[tox] +envlist = static_analysis,py34,py35,py36 + +[testenv:static_analysis] +deps = + coala-bears +commands = + coala-ci + +[testenv] +deps = + -rrequirements.txt + -rtest-requirements.txt +commands = + pytest