1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-20 10:58:33 +00:00
Files
seahub/tests/common/common.py

10 lines
254 B
Python
Raw Normal View History

2014-08-27 11:08:39 +08:00
import os
2014-08-27 17:13:05 +08:00
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')
2014-08-28 10:21:28 +08:00
if os.getenv('CI_IS_PRO', u'') == u'':
IS_PRO = False
else:
IS_PRO = True