We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daa36ce commit 966f9d1Copy full SHA for 966f9d1
tox.ini
@@ -21,13 +21,14 @@ deps =
21
django18: Django >=1.8, <1.9
22
23
commands =
24
- {envpython} -c "import tests.banner"
25
- {envpython} -m unittest {posargs:discover -b}
+ python -c "import tests.banner"
+ python -m unittest {posargs:discover -b}
26
27
usedevelop = True
28
29
[testenv:py34-django14]
30
-commands = {envpython} -c "print('Django 1.4 does not support Python 3.')"
+commands =
31
+ python -c "print('Django 1.4 does not support Python 3.')"
32
33
[testenv:check]
34
deps =
0 commit comments