Ver código fonte

add unittest to setup.py,

move tests to the correct place
oz123 11 anos atrás
pai
commit
c6aaac3442

+ 0 - 0
tests/crypto_tests.py → pwman/tests/crypto_tests.py


+ 0 - 0
tests/db_tests.py → pwman/tests/db_tests.py


+ 0 - 0
tests/pwman.db.aes.encryption → pwman/tests/pwman.db.aes.encryption


+ 0 - 0
tests/pwman.db.no.encryption → pwman/tests/pwman.db.no.encryption


+ 0 - 0
tests/test_pwman.py → pwman/tests/test_pwman.py


+ 2 - 1
setup.py

@@ -37,5 +37,6 @@ setup(name=pwman.appname,
           'Operating System :: POSIX',
           'Programming Language :: Python',
           'Programming Language :: Python :: 2.7'
-          ]
+          ],
+      test_suite="tests"
 )