From 55871bf8f508b7ce42e7bbe087a88bc82952eda2 Mon Sep 17 00:00:00 2001
From: Adam Williamson <awilliam@redhat.com>
Date: Wed, 26 Jun 2019 09:23:46 -0700
Subject: [PATCH] tox.ini: restore commands line, fix tabs vs. spaces (#224)

The `commands` line was accidentally(?) removed entirely in
57f716e, so tox no longer actually ran any tests (only flake8).
This restores it, with the codestyle bit removed obviously. It
also fixes two lines where a tab was used instead of spaces.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
---
 tox.ini | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tox.ini b/tox.ini
index 4554c67..7b5586f 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,13 +3,14 @@ envlist = py27,py34,py35,py36,flake
 
 [testenv]
 deps =
-	pytest
+    pytest
     pytest-cov
     responses
     mock
+commands = py.test -v --cov mwclient test
 
 [testenv:flake]
 deps =
     flake8
 commands =
-	flake8 mwclient
+    flake8 mwclient
-- 
GitLab