소스 검색

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},
 
       )