cubicweb/devtools/qunit.py
changeset 11742 def9b3757945
parent 11165 c6fe858f6b90
child 11744 a6dc650bc230
equal deleted inserted replaced
11741:8f264d98d6fd 11742:def9b3757945
    23 from subprocess import Popen, PIPE, STDOUT
    23 from subprocess import Popen, PIPE, STDOUT
    24 
    24 
    25 from six.moves.queue import Queue, Empty
    25 from six.moves.queue import Queue, Empty
    26 
    26 
    27 # imported by default to simplify further import statements
    27 # imported by default to simplify further import statements
    28 from logilab.common.testlib import unittest_main, with_tempdir, Tags
    28 from logilab.common.testlib import with_tempdir, Tags
    29 import webtest.http
    29 import webtest.http
    30 
    30 
    31 import cubicweb
    31 import cubicweb
    32 from cubicweb.view import View
    32 from cubicweb.view import View
    33 from cubicweb.web.controller import Controller
    33 from cubicweb.web.controller import Controller
   288 
   288 
   289 STATIC_CONTROLLERS.append(CWDevtoolsStaticController)
   289 STATIC_CONTROLLERS.append(CWDevtoolsStaticController)
   290 
   290 
   291 
   291 
   292 if __name__ == '__main__':
   292 if __name__ == '__main__':
   293     unittest_main()
   293     import unittest
       
   294     unittest.main()