Created
October 14, 2015 07:41
-
-
Save sangdongvan/b3681052784cbc85625f to your computer and use it in GitHub Desktop.
Wagtail run testing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import sys | |
| import os | |
| import shutil | |
| import warnings | |
| from django.core.management import execute_from_command_line | |
| from wagtail.tests.settings import STATIC_ROOT, MEDIA_ROOT | |
| os.environ['DJANGO_SETTINGS_MODULE'] = 'wagtail.tests.settings' | |
| def runtests(): | |
| # Don't ignore DeprecationWarnings | |
| warnings.simplefilter('default', DeprecationWarning) | |
| warnings.simplefilter('default', PendingDeprecationWarning) | |
| # Don't ignore ResourceWarnings (Python 3 only) | |
| if sys.version_info >= (3, 0): | |
| warnings.simplefilter('default', ResourceWarning) | |
| argv = sys.argv[:1] + ['test'] + sys.argv[1:] | |
| try: | |
| execute_from_command_line(argv) | |
| finally: | |
| shutil.rmtree(STATIC_ROOT, ignore_errors=True) | |
| shutil.rmtree(MEDIA_ROOT, ignore_errors=True) | |
| if __name__ == '__main__': | |
| runtests() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment