forked from torchbox/wagtail-headless-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtests.py
33 lines (25 loc) · 782 Bytes
/
runtests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
import os
import sys
import warnings
from django.core.management import execute_from_command_line
os.environ["DJANGO_SETTINGS_MODULE"] = "wagtail_headless_preview.tests.settings"
def runtests():
# Don't ignore DeprecationWarnings
only_wagtail_headless_preview = r"^wagtail_headless_preview(\.|$)"
warnings.filterwarnings(
"default", category=DeprecationWarning, module=only_wagtail_headless_preview
)
warnings.filterwarnings(
"default",
category=PendingDeprecationWarning,
module=only_wagtail_headless_preview,
)
args = sys.argv[1:]
argv = sys.argv[:1] + ["test"] + args
try:
execute_from_command_line(argv)
finally:
pass
if __name__ == "__main__":
runtests()