devtools/qunit.py
branchstable
changeset 7363 2293c49b290a
parent 7051 34d8b36480a9
child 7879 9aae456abab5
equal deleted inserted replaced
7362:b9813c9d32ac 7363:2293c49b290a
     3 from tempfile import mkdtemp, NamedTemporaryFile, TemporaryFile
     3 from tempfile import mkdtemp, NamedTemporaryFile, TemporaryFile
     4 import tempfile
     4 import tempfile
     5 from Queue import Queue, Empty
     5 from Queue import Queue, Empty
     6 from subprocess import Popen, check_call, CalledProcessError
     6 from subprocess import Popen, check_call, CalledProcessError
     7 from shutil import rmtree, copy as copyfile
     7 from shutil import rmtree, copy as copyfile
     8 from uuid import uuid4 
     8 from uuid import uuid4
     9 
     9 
    10 # imported by default to simplify further import statements
    10 # imported by default to simplify further import statements
    11 from logilab.common.testlib import unittest_main, with_tempdir, InnerTest, Tags
    11 from logilab.common.testlib import unittest_main, with_tempdir, InnerTest, Tags
    12 from logilab.common.shellutils import getlogin
    12 from logilab.common.shellutils import getlogin
    13 
    13