Procházet zdrojové kódy

fix missing suite to run tests

oz123 před 11 roky
rodič
revize
1babc586cf
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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},
 
       )