1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-08 02:10:24 +00:00

[tests] add web api test for miscs

This commit is contained in:
Chilledheart
2014-08-28 10:21:28 +08:00
committed by lins05
parent 913dcf694a
commit ba84dc87b3
4 changed files with 54 additions and 1 deletions

View File

@@ -3,3 +3,7 @@ import os
BASE_URL = os.getenv('CI_BASE_URL', u'http://127.0.0.1:8000')
USERNAME = os.getenv('CI_USERNAME', u'test@test.com')
PASSWORD = os.getenv('CI_PASSWORD', u'testtest')
if os.getenv('CI_IS_PRO', u'') == u'':
IS_PRO = False
else:
IS_PRO = True