Commit 60612cb9 by Timothée Peignier

fixing tests

parent 6636e9f0
...@@ -37,7 +37,7 @@ class CompilerTest(TestCase): ...@@ -37,7 +37,7 @@ class CompilerTest(TestCase):
_('pipeline/js/dummy.coffee'), _('pipeline/js/dummy.coffee'),
_('pipeline/js/application.js'), _('pipeline/js/application.js'),
]) ])
self.assertEqual([_('pipeline/js/dummy.js'), _('pipeline/js/application.js')], paths) self.assertEqual([_('pipeline/js/dummy.js'), _('pipeline/js/application.js')], list(paths))
def tearDown(self): def tearDown(self):
settings.PIPELINE_COMPILERS = self.old_compilers settings.PIPELINE_COMPILERS = self.old_compilers
...@@ -18,6 +18,7 @@ deps = ...@@ -18,6 +18,7 @@ deps =
mock mock
unittest2 unittest2
jinja2 jinja2
futures
[testenv:py27-1.4.X] [testenv:py27-1.4.X]
basepython = python2.7 basepython = python2.7
...@@ -26,6 +27,7 @@ deps = ...@@ -26,6 +27,7 @@ deps =
mock mock
unittest2 unittest2
jinja2 jinja2
futures
[testenv:pypy-1.4.X] [testenv:pypy-1.4.X]
basepython = pypy basepython = pypy
...@@ -34,6 +36,7 @@ deps = ...@@ -34,6 +36,7 @@ deps =
mock mock
unittest2 unittest2
jinja2 jinja2
futures
[testenv:py26] [testenv:py26]
basepython = python2.6 basepython = python2.6
...@@ -42,6 +45,7 @@ deps = ...@@ -42,6 +45,7 @@ deps =
mock mock
unittest2 unittest2
jinja2 jinja2
futures
[testenv:py27] [testenv:py27]
basepython = python2.7 basepython = python2.7
...@@ -50,6 +54,7 @@ deps = ...@@ -50,6 +54,7 @@ deps =
mock mock
unittest2 unittest2
jinja2 jinja2
futures
[testenv:pypy] [testenv:pypy]
basepython = pypy basepython = pypy
...@@ -58,6 +63,7 @@ deps = ...@@ -58,6 +63,7 @@ deps =
mock mock
unittest2 unittest2
jinja2 jinja2
futures
[testenv:py33] [testenv:py33]
basepython = python3.3 basepython = python3.3
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment