26 lines
532 B
Python
26 lines
532 B
Python
import os, sys
|
|
|
|
from test_http import *
|
|
from test_cache import *
|
|
|
|
if "google" in (os.getenv("DB") or []):
|
|
from test_dal_nosql import *
|
|
else:
|
|
from test_dal import *
|
|
|
|
from test_html import *
|
|
from test_is_url import *
|
|
from test_languages import *
|
|
from test_router import *
|
|
from test_routes import *
|
|
from test_storage import *
|
|
from test_template import *
|
|
from test_validators import *
|
|
from test_utils import *
|
|
from test_contribs import *
|
|
from test_web import *
|
|
|
|
|
|
if sys.version[:3] == '2.7':
|
|
from test_old_doctests import *
|