浏览代码

fix missing suite to run tests

oz123 11 年之前
父节点
当前提交
1babc586cf
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      setup.py

+ 2 - 2
setup.py

@@ -10,7 +10,7 @@ from setuptools.command.install import install
 import os
 import urllib
 import shutil
-    
+
 
 class PyCryptoInstallCommand(install):
     """
@@ -63,7 +63,7 @@ setup(name=pwman.appname,
           'Programming Language :: Python',
           'Programming Language :: Python :: 2.7'
       ],
-      test_suite='pwman.tests',
+      test_suite='pwman.tests.suite',
       cmdclass={'install_pycrypto': PyCryptoInstallCommand},
 
       )