2014-02-13 12:44:49 +00:00
|
|
|
#!/usr/bin/env python
|
2015-11-09 12:04:50 +00:00
|
|
|
|
2014-02-17 11:03:41 +00:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import shutil
|
2014-07-23 13:48:42 +00:00
|
|
|
import warnings
|
2016-03-23 05:46:01 +00:00
|
|
|
import argparse
|
2014-02-13 12:44:49 +00:00
|
|
|
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
|
2014-02-14 17:17:31 +00:00
|
|
|
|
2014-06-30 14:08:09 +00:00
|
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'wagtail.tests.settings'
|
2014-02-13 12:44:49 +00:00
|
|
|
|
|
|
|
|
2016-03-23 05:46:01 +00:00
|
|
|
def make_parser():
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument('--deprecation', choices=['all', 'pending', 'imminent', 'none'], default='pending')
|
|
|
|
parser.add_argument('--postgres', action='store_true')
|
|
|
|
parser.add_argument('--elasticsearch', action='store_true')
|
|
|
|
parser.add_argument('rest', nargs='*')
|
|
|
|
return parser
|
|
|
|
|
2014-07-23 13:48:42 +00:00
|
|
|
|
2016-03-23 05:46:01 +00:00
|
|
|
def parse_args(args=None):
|
|
|
|
return make_parser().parse_args(args)
|
2015-11-09 12:04:50 +00:00
|
|
|
|
2016-03-23 05:46:01 +00:00
|
|
|
|
|
|
|
def runtests():
|
|
|
|
args = parse_args()
|
|
|
|
|
|
|
|
only_wagtail = r'^wagtail(\.|$)'
|
|
|
|
if args.deprecation == 'all':
|
|
|
|
# Show all deprecation warnings from all packages
|
|
|
|
warnings.simplefilter('default', DeprecationWarning)
|
|
|
|
warnings.simplefilter('default', PendingDeprecationWarning)
|
|
|
|
elif args.deprecation == 'pending':
|
|
|
|
# Show all deprecation warnings from wagtail
|
|
|
|
warnings.filterwarnings('default', category=DeprecationWarning, module=only_wagtail)
|
|
|
|
warnings.filterwarnings('default', category=PendingDeprecationWarning, module=only_wagtail)
|
|
|
|
elif args.deprecation == 'imminent':
|
|
|
|
# Show only imminent deprecation warnings from wagtail
|
|
|
|
warnings.filterwarnings('default', category=DeprecationWarning, module=only_wagtail)
|
|
|
|
elif args.deprecation == 'none':
|
|
|
|
# Deprecation warnings are ignored by default
|
|
|
|
pass
|
|
|
|
|
|
|
|
if args.postgres:
|
2015-11-09 12:04:50 +00:00
|
|
|
os.environ['DATABASE_ENGINE'] = 'django.db.backends.postgresql_psycopg2'
|
|
|
|
|
2016-03-23 05:46:01 +00:00
|
|
|
if args.elasticsearch:
|
2015-11-09 12:13:07 +00:00
|
|
|
os.environ.setdefault('ELASTICSEARCH_URL', 'http://localhost:9200')
|
2016-05-03 16:19:29 +00:00
|
|
|
elif 'ELASTICSEARCH_URL' in os.environ:
|
|
|
|
# forcibly delete the ELASTICSEARCH_URL setting to skip those tests
|
|
|
|
del os.environ['ELASTICSEARCH_URL']
|
2015-11-09 12:13:07 +00:00
|
|
|
|
2016-03-23 05:46:01 +00:00
|
|
|
argv = [sys.argv[0], 'test'] + args.rest
|
2014-02-13 12:53:52 +00:00
|
|
|
try:
|
|
|
|
execute_from_command_line(argv)
|
|
|
|
finally:
|
2015-11-09 12:04:50 +00:00
|
|
|
from wagtail.tests.settings import STATIC_ROOT, MEDIA_ROOT
|
2014-02-13 12:53:52 +00:00
|
|
|
shutil.rmtree(STATIC_ROOT, ignore_errors=True)
|
2014-02-23 14:57:33 +00:00
|
|
|
shutil.rmtree(MEDIA_ROOT, ignore_errors=True)
|
2014-02-13 12:44:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
runtests()
|