summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorMarkus Unterwaditzer <markus@unterwaditzer.net>2014-08-23 14:55:25 +0200
committerMarkus Unterwaditzer <markus@unterwaditzer.net>2014-08-23 14:55:25 +0200
commit4f4bcb8d0c0d46c9d8ad403f172e95f50eb70a7c (patch)
tree2a342b2a90db3da697dac2b016eccfecc544ca7a /tox.ini
parent599c43357660c62f38b8a011f18478e629070854 (diff)
downloadwerkzeug-4f4bcb8d0c0d46c9d8ad403f172e95f50eb70a7c.tar.gz
Update comments in tox.ini
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 3 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 2bf3cab7..063b0206 100644
--- a/tox.ini
+++ b/tox.ini
@@ -13,8 +13,7 @@ whitelist_externals=
memcached
commands=
-# Install correct memcached client (need different one for Py3). We need to
-# wrap this in sh because tox will otherwise detect the failure of the Python
-# command and whine.
- sh -c "python -c raw_input &> /dev/null && pip install python-memcached || pip install python3-memcached"
+# Install correct memcached client (need different one for Py3). Tox is not
+# able to parse shell commands, so we have to do that.
+ sh -c 'python -c raw_input &> /dev/null && pip install python-memcached || pip install python3-memcached'
py.test []