소스 검색

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