-
Notifications
You must be signed in to change notification settings - Fork 4
/
noxfile.py
208 lines (152 loc) · 7.53 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
201
202
203
204
205
206
207
208
"""nox https://nox.thea.codes/en/stable/ configuration"""
# Use nox >= 2023.4.22
import os
import sys
import argparse
from pathlib import Path
import subprocess
import shutil
from typing import Sequence
import nox
_HERE = Path(__file__).absolute().parent
_TEST_DIR = _HERE/"test"
_DEMO_DIR = _HERE/"demo"
_DOC_DIR = _HERE/"docs"
sys.path.extend((str(_HERE), str(_DEMO_DIR)))
from test.framework.cfg import ApiType, str_to_apis, dirs
from test.framework.pytest_options import add_options
# Locally we have nox handle the different versions, but in each travis run there is only a single python which can always be found as just 'python'
_PY_VERSIONS = ["3.13", "3.12", "3.11", "3.10"] if not os.environ.get("TRAVIS_PYTHON_VERSION") else ["python"]
_IS_CI = os.environ.get("CI", "false").lower() == "true"
nox.options.error_on_missing_interpreters = True
nox.options.envdir = dirs.pseudo_install_dir
def _cov_options_env(api_types: Sequence[ApiType], env: dict[str, str], fail_under: int = 0) -> Sequence[str]:
"""Setup coverage options.
Return pytest coverage options, and env variables dict.
"""
if not fail_under:
if len(api_types) == 3:
fail_under = 93.90
elif ApiType.JENKINS in api_types:
fail_under = 94.90
elif ApiType.MOCK in api_types and ApiType.SCRIPT in api_types:
fail_under = 86.97
elif ApiType.MOCK in api_types:
fail_under = 85.33
elif ApiType.SCRIPT in api_types:
fail_under = 81.66
else:
raise ValueError(f"Unknown coverage requirement for api type combination: {api_types}")
# Set coverage exclude lines based on selected API types
api_exclude_lines = []
if api_types == [ApiType.SCRIPT]:
# Parts of api_base not used in script_api (overridden methods)
api_exclude_lines.append(r"return (self.job.public_uri + '/' + repr(self.build_number) + '/console')")
# Set coverage exclude files based on selected API type
api_exclude_files = []
if ApiType.JENKINS not in api_types:
api_exclude_files.append("jenkins_api.py")
if ApiType.SCRIPT not in api_types:
api_exclude_files.extend(["script_api.py", "logging_process.py"])
env["COV_API_EXCLUDE_LINES"] = "\n".join(api_exclude_lines)
env["COV_API_EXCLUDE_FILES"] = "\n".join(api_exclude_files)
return ['--cov', '--cov-report=term-missing', f'--cov-fail-under={fail_under}', f'--cov-config={_TEST_DIR/".coveragerc"}']
def _pytest_parallel_options(parallel, api_types):
args = []
if api_types != [ApiType.MOCK]:
# Note: 'forked' is required for the kill/abort_current test not to abort other tests
args.append('--forked')
# Note: parallel actually significantly slows down the test when only running mock
if parallel:
args.extend(['-n', '16'])
return args
_TEST_AND_DEMOS_INSTALLED = False
def _test_and_demos_install(session):
"""Make test and demos available to Jenkins process."""
global _TEST_AND_DEMOS_INSTALLED
site_packages_dir = Path(session.bin, f"../lib/python{session.python}/site-packages/jenkinsflow").resolve()
for src_dir_name in "demo", "test":
tgt_dir = Path(dirs.test_tmp_dir, src_dir_name)
if not _TEST_AND_DEMOS_INSTALLED:
exclude = [f"--exclude={exc}" for exc in (".git", "*~", "'*.py[cod]'", "__pycache__", "*.cache")]
subprocess.check_call(["rsync", "-a", "--delete", "--delete-excluded", *exclude, f"{_HERE}/{src_dir_name}/", f"{tgt_dir}/"])
for root, _, files in os.walk(tgt_dir):
os.chmod(root, 0o777)
for fn in files:
os.chmod(Path(root, fn), 0o644)
lnk = site_packages_dir/src_dir_name
lnk.unlink(missing_ok=True)
lnk.symlink_to(tgt_dir)
_TEST_AND_DEMOS_INSTALLED = True
# @nox.session(python=_PY_VERSIONS, reuse_venv=True)
# def typecheck(session):
# session.install("-e", ".", "mypy>=1.5.1")
# session.run("mypy", str(_HERE/"src"))
@nox.session(python=_PY_VERSIONS[0], reuse_venv=True)
def pylint(session):
session.install(".", "pylint>=3.3.1", "pylint-pytest>=1.1.8")
print("\nPylint src")
session.run("pylint", "--fail-under", "8.5", str(_HERE/"src"))
print("\nPylint test sources")
disable_checks = "missing-module-docstring,missing-class-docstring,missing-function-docstring"
disable_checks += ",multiple-imports,invalid-name,duplicate-code"
session.run(
"pylint", "--fail-under", "9.2", "--variable-rgx", r"[a-z_][a-z0-9_]{1,30}$", "--disable", disable_checks,
"--ignore", "jenkins_security.py,demos_test.py", str(_TEST_DIR))
@nox.session(python=_PY_VERSIONS, reuse_venv=True)
def unit(session):
"""
Test jenkinsflow.
Runs all tests mocked in hyperspeed, runs against Jenkins, using jenkins_api, and run script_api jobs.
Normally jobs will be run in parallel, specifying 'job_delete' disables this.
The default options assumes that re-loading without deletions generates correct job config.
Tests that require jobs to be deleted/non-existing will delete the jobs, regardless of the 'job_delete' option.
Will process some of the special pytest args:
direct_url: Direct Jenkins URL. Must be different from the URL set in Jenkins (and preferably non proxied).
apis: The apis totest, default all.
job_delete: Delete and re-load jobs into Jenkins.
job_load: Load jobs into Jenkins (skipping job load assumes all jobs already loaded and up to date).
"""
session.install("--upgrade", ".", "-r", str(_TEST_DIR/"requirements.txt"))
pytest_args = []
if _IS_CI:
pytest_args.append("-vvv")
parser = argparse.ArgumentParser(description="Process pytest options")
add_options(parser)
parsed_args = parser.parse_known_args(session.posargs)
# print("parsed_args:", parsed_args)
special_args = parsed_args[0]
unknown_pytest_args = parsed_args[1]
apis = str_to_apis(special_args.api)
# print("noxfile, apis:", apis)
cov_file = _HERE/".coverage"
if os.path.exists(cov_file):
os.remove(cov_file)
env = {}
# If we have unknow pytest options we don't know what the coverage would be
fail_under = 1 if unknown_pytest_args and (unknown_pytest_args[0] != "-n" or len(unknown_pytest_args) != 2) else 0
cov_opts = _cov_options_env(apis, env, fail_under)
# env["COVERAGE_DEBUG"] = "config,trace,pathmap"
parallel = special_args.job_load or special_args.job_delete
pytest_args.extend(_pytest_parallel_options(parallel, apis))
pytest_args.extend(["--capture=sys", "--instafail", "-p", "no:warnings", "--failed-first"])
pytest_args.extend(session.posargs)
if apis != [ApiType.MOCK]:
env["JEKINSFLOW_TEST_JENKINS_API_PYTHON_EXECUTABLE"] = f"{session.bin}/python"
_test_and_demos_install(session)
session.run("pytest", "--capture=sys", *cov_opts, *pytest_args, env=env)
@nox.session(python=_PY_VERSIONS[0], reuse_venv=True)
def build(session):
if Path("dist").is_dir():
shutil.rmtree("dist")
session.install("build>=1.0.3", "twine>=4.0.2")
session.run("python", "-m", "build")
session.run("python", "-m", "twine", "check", "dist/*")
@nox.session(python=_PY_VERSIONS[0], reuse_venv=True)
def docs(session):
session.install("--upgrade", ".", "-r", str(_DOC_DIR/"requirements.txt"))
session.run("make", "-C", "docs/source", "html")
@nox.session(python=_PY_VERSIONS[0], reuse_venv=True)
def cli(session):
session.install("--upgrade", ".")
session.run("jenkinsflow", "set-build-description", "--help")