summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorErik Rose <erik@mozilla.com>2013-04-24 13:07:59 -0700
committerErik Rose <erik@mozilla.com>2013-04-24 13:07:59 -0700
commit5b9cafa224d438137c8511fcf3353c51d11be43e (patch)
tree964861667473f5d62f674cfe19b3dc0efb1b735c /tox.ini
parentd3ba51c5870d599b40b387ac6703805c3e23d292 (diff)
downloadblessings-5b9cafa224d438137c8511fcf3353c51d11be43e.tar.gz
Fix tox.ini syntax to work around a bug in tox.
Tox was using the entire line, comment and all, as the folder name and making that ridiculous folder.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 5d983d4..06bd4fd 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,4 +4,5 @@ envlist = py25, py26, py27, py32, py33
[testenv]
commands = nosetests blessings
deps = nose
-changedir = .tox # So Python 3 runs don't pick up incompatible, un-2to3'd source from the cwd
+# So Python 3 runs don't pick up incompatible, un-2to3'd source from the cwd:
+changedir = .tox \ No newline at end of file