4

如何强制python setup.py test使用unittest2包进行测试而不是内置unittest包?

4

1 回答 1

2

假设您有一个名为的目录tests,其中包含一个__init__.py文件,该文件定义了一个suite返回测试套件的函数。

python setup.py test我的解决方案是用我自己的命令替换默认命令,test该命令使用unittest2

from setuptools import Command
from setuptools import setup

class run_tests(Command):
    """Runs the test suite using the ``unittest2`` package instead of the     
    built-in ``unittest`` package.                                            

    This is necessary to override the default behavior of ``python setup.py   
    test``.                                                                   

    """
    #: A brief description of the command.                                    
    description = "Run the test suite (using unittest2)."

    #: Options which can be provided by the user.                             
    user_options = []

    def initialize_options(self):
        """Intentionally unimplemented."""
        pass

    def finalize_options(self):
        """Intentionally unimplemented."""
        pass

    def run(self):
        """Runs :func:`unittest2.main`, which runs the full test suite using  
        ``unittest2`` instead of the built-in :mod:`unittest` module.         

        """
        from unittest2 import main
        # I don't know why this works. These arguments are undocumented.      
        return main(module='tests', defaultTest='suite',
                    argv=['tests.__init__'])

setup(
  name='myproject',
  ...,
  cmd_class={'test': run_tests}
)

现在运行python setup.py test运行我的自定义test命令。

于 2012-04-12T05:33:27.647 回答