-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathplugin.py
103 lines (84 loc) · 2.93 KB
/
plugin.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import os
import sublime
import sys
import shutil
# Clear module cache to force reloading all modules of this package.
# kiss-reloader:
prefix = __package__ + "." # don't clear the base package
for module_name in [
module_name
for module_name in sys.modules
if module_name.startswith(prefix) and module_name != __name__
]:
del sys.modules[module_name]
prefix = None
from .unittesting.color_scheme import UnitTestingColorSchemeCommand
from .unittesting.syntax import UnitTestingSyntaxCommand
from .unittesting.syntax import UnitTestingSyntaxCompatibilityCommand
from .unittesting.unit import UnitTestingCommand
# publish plugin interface
__all__ = [
"UnitTestingCommand",
"UnitTestingSyntaxCommand",
"UnitTestingSyntaxCompatibilityCommand",
"UnitTestingColorSchemeCommand",
"plugin_loaded",
"plugin_unloaded",
]
# publish unittesting module
sys.modules["unittesting"] = sys.modules["UnitTesting"].unittesting
def plugin_loaded():
if sys.version_info < (3, 8):
return
# python 3.3 plugin_host is optional in ST4193+
settings = sublime.load_settings("Preferences.sublime-settings")
if settings.get("disable_plugin_host_3.3", False):
return
import json
from textwrap import dedent
UT33_CODE = dedent(
"""
from UnitTesting import plugin as ut38
class UnitTesting33Command(ut38.UnitTestingCommand):
\"\"\"Execute unit tests for python 3.3 plugins.\"\"\"
pass
"""
).lstrip()
UT33 = os.path.join(sublime.packages_path(), "UnitTesting33")
os.makedirs(UT33, exist_ok=True)
try:
try:
with open(os.path.join(UT33, "plugin.py"), "x") as f:
f.write(UT33_CODE)
except FileExistsError:
pass
try:
with open(os.path.join(UT33, "dependencies.json"), "x") as f:
f.write(
json.dumps(
{
"linux-x32": {">3000": ["coverage"]},
"linux-x64": {">3000": ["coverage"]},
"osx-x32": {">3000": ["coverage"]},
"osx-x64": {">3000": ["coverage"]},
"windows-x32": {">3000": ["coverage"]},
"windows-x64": {">3000": ["coverage"]},
}
)
)
except FileExistsError:
pass
try:
# hide from Package Control quick panels
open(os.path.join(UT33, ".hidden-sublime-package"), "x").close()
except FileExistsError:
pass
except OSError as e:
print("UnitTesting: Error while creating python 3.3 module, since", str(e))
def plugin_unloaded():
if sys.version_info >= (3, 8):
UT33 = os.path.join(sublime.packages_path(), "UnitTesting33")
try:
shutil.rmtree(UT33)
except OSError:
pass