Skip to content

Commit 966f9d1

Browse files
committed
A simpler way to write the tox.ini file
1 parent daa36ce commit 966f9d1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@ deps =
2121
django18: Django >=1.8, <1.9
2222

2323
commands =
24-
{envpython} -c "import tests.banner"
25-
{envpython} -m unittest {posargs:discover -b}
24+
python -c "import tests.banner"
25+
python -m unittest {posargs:discover -b}
2626

2727
usedevelop = True
2828

2929
[testenv:py34-django14]
30-
commands = {envpython} -c "print('Django 1.4 does not support Python 3.')"
30+
commands =
31+
python -c "print('Django 1.4 does not support Python 3.')"
3132

3233
[testenv:check]
3334
deps =

0 commit comments

Comments
 (0)