Skip to content

Commit

Permalink
Fix tox.ini syntax to work around a bug in tox.
Browse files Browse the repository at this point in the history
Tox was using the entire line, comment and all, as the folder name and making that ridiculous folder.
  • Loading branch information
erikrose committed Apr 24, 2013
1 parent d3ba51c commit 5b9cafa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5b9cafa

Please sign in to comment.