فهرست منبع

add unittest to setup.py,

move tests to the correct place
oz123 11 سال پیش
والد
کامیت
c6aaac3442
6فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 0 0
      pwman/tests/crypto_tests.py
  2. 0 0
      pwman/tests/db_tests.py
  3. 0 0
      pwman/tests/pwman.db.aes.encryption
  4. 0 0
      pwman/tests/pwman.db.no.encryption
  5. 0 0
      pwman/tests/test_pwman.py
  6. 2 1
      setup.py

+ 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"
 )