-
Notifications
You must be signed in to change notification settings - Fork 0
/
testmanage.py
executable file
·74 lines (55 loc) · 1.93 KB
/
testmanage.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
import argparse
import os
import shutil
import sys
import warnings
from typing import TYPE_CHECKING
from django.core.management import execute_from_command_line
if TYPE_CHECKING:
from typing import Optional
os.environ["DJANGO_SETTINGS_MODULE"] = "laces.test.settings"
def make_parser() -> argparse.ArgumentParser:
parser = argparse.ArgumentParser()
parser.add_argument(
"--deprecation",
choices=["all", "pending", "imminent", "none"],
default="imminent",
)
return parser
def parse_args(
args: "Optional[list[str]]" = None,
) -> "tuple[argparse.Namespace, list[str]]":
return make_parser().parse_known_args(args)
def runtests() -> None:
args, rest = parse_args()
only_django = r"^django(\.|$)"
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 django
warnings.filterwarnings(
"default", category=DeprecationWarning, module=only_django
)
warnings.filterwarnings(
"default", category=PendingDeprecationWarning, module=only_django
)
elif args.deprecation == "imminent":
# Show only imminent deprecation warnings from django
warnings.filterwarnings(
"default", category=DeprecationWarning, module=only_django
)
elif args.deprecation == "none":
# Deprecation warnings are ignored by default
pass
argv = [sys.argv[0]] + rest
try:
execute_from_command_line(argv)
finally:
from laces.test.settings import MEDIA_ROOT, STATIC_ROOT
shutil.rmtree(STATIC_ROOT, ignore_errors=True)
shutil.rmtree(MEDIA_ROOT, ignore_errors=True)
if __name__ == "__main__":
runtests()