forked from microsoft/vscode-isort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
noxfile.py
200 lines (159 loc) · 6.52 KB
/
noxfile.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
"""
All the action we need during build
"""
import json
import pathlib
import re
import urllib.request as url_lib
import nox
def _update_pip_packages(session: nox.Session) -> None:
session.run(
"pip-compile",
"--generate-hashes",
"--resolver=backtracking",
"--upgrade",
"./requirements.in",
)
session.run(
"pip-compile",
"--generate-hashes",
"--resolver=backtracking",
"--upgrade",
"./src/test/python_tests/requirements.in",
)
def _get_package_data(package):
json_uri = f"https://registry.npmjs.org/{package}"
with url_lib.urlopen(json_uri) as response:
return json.loads(response.read())
def _update_npm_packages(session: nox.Session) -> None:
pinned = {
"vscode-languageclient",
"@types/vscode",
"@types/node",
}
package_json_path = pathlib.Path(__file__).parent / "package.json"
package_json = json.loads(package_json_path.read_text(encoding="utf-8"))
for package in package_json["dependencies"]:
if package not in pinned:
data = _get_package_data(package)
latest = "^" + data["dist-tags"]["latest"]
package_json["dependencies"][package] = latest
for package in package_json["devDependencies"]:
if package not in pinned:
data = _get_package_data(package)
latest = "^" + data["dist-tags"]["latest"]
package_json["devDependencies"][package] = latest
# Ensure engine matches the package
if (
package_json["engines"]["vscode"]
!= package_json["devDependencies"]["@types/vscode"]
):
print(
"Please check VS Code engine version and @types/vscode version in package.json."
)
new_package_json = json.dumps(package_json, indent=4)
# JSON dumps uses \n for line ending on all platforms by default
if not new_package_json.endswith("\n"):
new_package_json += "\n"
package_json_path.write_text(new_package_json, encoding="utf-8")
session.run("npm", "audit", "fix", external=True, success_codes=[0, 1])
session.run("npm", "install", external=True)
@nox.session(python="3.7")
def install_bundled_libs(session):
"""Installs the libraries that will be bundled with the extension."""
session.install("wheel")
session.install(
"-t",
"./bundled/libs",
"--no-cache-dir",
"--implementation",
"py",
"--no-deps",
"--upgrade",
"-r",
"./requirements.txt",
)
@nox.session()
def tests(session):
"""Runs all the tests for the extension."""
session.install("-r", "src/test/python_tests/requirements.txt")
session.run("pytest", "src/test/python_tests")
session.install("freezegun")
session.run("pytest", "build")
@nox.session()
def lint(session):
"""Runs linter and formatter checks on python files."""
session.install("-r", "src/test/python_tests/requirements.txt")
session.install("flake8")
session.run("flake8", "./bundled/tool")
session.run(
"flake8",
"--extend-exclude",
"./src/test/python_tests/test_data",
"./src/test/python_tests",
)
session.run("flake8", "noxfile.py")
# check formatting using black
session.install("black")
session.run("black", "--check", "./bundled/tool")
session.run("black", "--check", "./src/test/python_tests")
session.run("black", "--check", "noxfile.py")
# check import sorting using isort
session.install("isort")
session.run("isort", "--check", "./bundled/tool")
session.run("isort", "--check", "./src/test/python_tests")
session.run("isort", "--check", "noxfile.py")
@nox.session()
def update_build_number(session):
"""Updates buildnumber for the extension."""
if len(session.posargs) == 0:
session.log("No updates to package version")
return
package_json_path = pathlib.Path(__file__).parent / "package.json"
session.log(f"Reading package.json at: {package_json_path}")
package_json = json.loads(package_json_path.read_text(encoding="utf-8"))
parts = re.split("\\.|-", package_json["version"])
major, minor = parts[:2]
version = f"{major}.{minor}.{session.posargs[0]}"
version = version if len(parts) == 3 else f"{version}-{''.join(parts[3:])}"
session.log(f"Updating version from {package_json['version']} to {version}")
package_json["version"] = version
package_json_path.write_text(json.dumps(package_json, indent=4), encoding="utf-8")
def _get_module_name() -> str:
package_json_path = pathlib.Path(__file__).parent / "package.json"
package_json = json.loads(package_json_path.read_text(encoding="utf-8"))
return package_json["serverInfo"]["module"]
@nox.session()
def validate_readme(session: nox.Session) -> None:
"""Ensures the formatter version in 'requirements.txt' matches 'readme.md'."""
requirements_file = pathlib.Path(__file__).parent / "requirements.txt"
readme_file = pathlib.Path(__file__).parent / "README.md"
lines = requirements_file.read_text(encoding="utf-8").splitlines(keepends=False)
module = _get_module_name()
formatter_ver = list(line for line in lines if line.startswith(module))[0]
name, version = formatter_ver.split(" ")[0].split("==")
session.log(f"Looking for {name}={version} in README.md")
content = readme_file.read_text(encoding="utf-8")
if f"{name}={version}" not in content:
raise ValueError(f"Formatter info {name}={version} was not found in README.md.")
session.log(f"FOUND {name}={version} in README.md")
def _update_readme() -> None:
requirements_file = pathlib.Path(__file__).parent / "requirements.txt"
lines = requirements_file.read_text(encoding="utf-8").splitlines(keepends=False)
module = _get_module_name()
formatter_ver = list(line for line in lines if line.startswith(module))[0]
_, version = formatter_ver.split(" ")[0].split("==")
readme_file = pathlib.Path(__file__).parent / "README.md"
content = readme_file.read_text(encoding="utf-8")
regex = r"\`([a-zA-Z0-9]+)=([0-9]+\.[0-9]+\.[0-9]+)\`"
result = re.sub(regex, f"`{module}={version}`", content, 0, re.MULTILINE)
content = readme_file.write_text(result, encoding="utf-8")
@nox.session()
def update_packages(session: nox.Session) -> None:
"""Update pip and npm packages."""
session.install("wheel", "pip-tools")
_update_pip_packages(session)
_update_npm_packages(session)
_update_readme()