File size: 11,891 Bytes
fc0f7bd | 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 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
# type: ignore
import copy
import os
import platform
from dataclasses import dataclass
from typing import List
import nox
from nox.logger import logger
BASE = os.path.abspath(os.path.dirname(__file__))
DEFAULT_PYTHON_VERSIONS = ["3.6", "3.7", "3.8"]
DEFAULT_OS_NAMES = ["Linux", "MacOS", "Windows"]
PYTHON_VERSIONS = os.environ.get(
"NOX_PYTHON_VERSIONS", ",".join(DEFAULT_PYTHON_VERSIONS)
).split(",")
PLUGINS_INSTALL_COMMANDS = (["pip", "install"], ["pip", "install", "-e"])
# Allow limiting testing to specific plugins
# The list ['ALL'] indicates all plugins
PLUGINS = os.environ.get("PLUGINS", "ALL").split(",")
SKIP_CORE_TESTS = "0"
SKIP_CORE_TESTS = os.environ.get("SKIP_CORE_TESTS", SKIP_CORE_TESTS) != "0"
FIX = os.environ.get("FIX", "0") == "1"
VERBOSE = os.environ.get("VERBOSE", "0")
SILENT = VERBOSE == "0"
@dataclass
class Plugin:
name: str
path: str
module: str
def get_current_os() -> str:
current_os = platform.system()
if current_os == "Darwin":
current_os = "MacOS"
return current_os
print(f"Operating system\t:\t{get_current_os()}")
print(f"NOX_PYTHON_VERSIONS\t:\t{PYTHON_VERSIONS}")
print(f"PLUGINS\t\t\t:\t{PLUGINS}")
print(f"SKIP_CORE_TESTS\t\t:\t{SKIP_CORE_TESTS}")
print(f"FIX\t\t\t:\t{FIX}")
print(f"VERBOSE\t\t\t:\t{VERBOSE}")
def _upgrade_basic(session):
session.run(
"python",
"-m",
"pip",
"install",
"--upgrade",
"setuptools",
"pip",
silent=SILENT,
)
def find_python_files_for_mypy(folder):
exclude_list = [""]
def excluded(file: str) -> bool:
for exclude in exclude_list:
if file.startswith(exclude):
return True
return False
for root, folders, files in os.walk(folder):
for filename in folders + files:
if filename.endswith(".py"):
if excluded(filename):
yield os.path.join(root, filename)
def install_hydra(session, cmd):
# clean install hydra
session.chdir(BASE)
session.run(*cmd, ".", silent=SILENT)
session.run(*cmd, "extra/hydra-pytest-plugin", silent=SILENT)
if not SILENT:
session.install("pipdeptree", silent=SILENT)
session.run("pipdeptree", "-p", "hydra-core")
def pytest_args(session, *args):
ret = ["pytest", "-Werror"]
ret.extend(args)
if len(session.posargs) > 0:
ret.extend(session.posargs)
return ret
def run_pytest(session, directory=".", *args):
pytest_cmd = pytest_args(session, directory, *args)
session.run(*pytest_cmd, silent=SILENT)
def get_setup_python_versions(classifiers):
pythons = filter(lambda line: "Programming Language :: Python" in line, classifiers)
return [p[len("Programming Language :: Python :: ") :] for p in pythons]
def get_plugin_os_names(classifiers: List[str]) -> List[str]:
oses = list(filter(lambda line: "Operating System" in line, classifiers))
if len(oses) == 0:
# No Os is specified so all oses are supported
return DEFAULT_OS_NAMES
if len(oses) == 1 and oses[0] == "Operating System :: OS Independent":
# All oses are supported
return DEFAULT_OS_NAMES
else:
return [p.split("::")[-1].strip() for p in oses]
def select_plugins(session) -> List[Plugin]:
"""
Select all plugins that should be tested in this session.
Considers the current Python version and operating systems against the supported ones,
as well as the user plugins selection (via the PLUGINS environment variable).
"""
assert session.python is not None, "Session python version is not specified"
blacklist = [".isort.cfg"]
example_plugins = [
{"dir_name": x, "path": f"examples/{x}"}
for x in sorted(os.listdir(os.path.join(BASE, "plugins/examples")))
if x not in blacklist
]
plugins = [
{"dir_name": x, "path": x}
for x in sorted(os.listdir(os.path.join(BASE, "plugins")))
if x != "examples"
if x not in blacklist
]
available_plugins = plugins + example_plugins
ret = []
skipped = []
for plugin in available_plugins:
if not (plugin["dir_name"] in PLUGINS or PLUGINS == ["ALL"]):
skipped.append(f"Deselecting {plugin['dir_name']}: User request")
continue
setup_py = os.path.join(BASE, "plugins", plugin["path"], "setup.py")
classifiers = session.run(
"python", setup_py, "--name", "--classifiers", silent=True
).splitlines()
plugin_name = classifiers.pop(0)
plugin_python_versions = get_setup_python_versions(classifiers)
python_supported = session.python in plugin_python_versions
plugin_os_names = get_plugin_os_names(classifiers)
os_supported = get_current_os() in plugin_os_names
if not python_supported:
py_str = ", ".join(plugin_python_versions)
skipped.append(
f"Deselecting {plugin['dir_name']} : Incompatible Python {session.python}. Supports [{py_str}]"
)
continue
# Verify this plugin supports the OS we are testing on, skip otherwise
if not os_supported:
os_str = ", ".join(plugin_os_names)
skipped.append(
f"Deselecting {plugin['dir_name']}: Incompatible OS {get_current_os()}. Supports [{os_str}]"
)
continue
ret.append(
Plugin(
name=plugin_name,
path=plugin["path"],
module="hydra_plugins." + plugin["dir_name"],
)
)
for msg in skipped:
logger.warn(msg)
if len(ret) == 0:
logger.warn("No plugins selected")
return ret
def install_lint_deps(session):
_upgrade_basic(session)
session.run("pip", "install", "-r", "requirements/dev.txt", silent=SILENT)
session.run("pip", "install", "-e", ".", silent=SILENT)
@nox.session(python=PYTHON_VERSIONS)
def lint(session):
install_lint_deps(session)
install_hydra(session, ["pip", "install", "-e"])
session.run("black", "--check", ".", silent=SILENT)
session.run(
"isort",
"--check",
"--diff",
".",
"--skip=plugins",
"--skip=.nox",
silent=SILENT,
)
session.run("mypy", ".", "--strict", silent=SILENT)
session.run("flake8", "--config", ".flake8")
session.run("yamllint", ".")
# Mypy for examples
for pyfile in find_python_files_for_mypy("examples"):
session.run("mypy", pyfile, "--strict", silent=SILENT)
@nox.session(python=PYTHON_VERSIONS)
def lint_plugins(session):
install_cmd = ["pip", "install", "-e"]
install_hydra(session, install_cmd)
plugins = select_plugins(session)
# plugin linting requires the plugins and their dependencies to be installed
for plugin in plugins:
cmd = install_cmd + [os.path.join("plugins", plugin.path)]
session.run(*cmd, silent=SILENT)
install_lint_deps(session)
session.run("flake8", "--config", ".flake8", "plugins")
# Mypy for plugins
for plugin in plugins:
session.chdir(os.path.join("plugins", plugin.path))
blackcmd = ["black", "."]
isortcmd = ["isort", "."]
if not FIX:
blackcmd += ["--check"]
isortcmd += ["--check", "--diff"]
session.run(*blackcmd, silent=SILENT)
session.run(*isortcmd, silent=SILENT)
session.chdir(BASE)
session.run("mypy", ".", "--strict", silent=SILENT)
@nox.session(python=PYTHON_VERSIONS)
@nox.parametrize(
"install_cmd",
PLUGINS_INSTALL_COMMANDS,
ids=[" ".join(x) for x in PLUGINS_INSTALL_COMMANDS],
)
def test_core(session, install_cmd):
_upgrade_basic(session)
install_hydra(session, install_cmd)
session.install("pytest")
run_pytest(session, "tests")
# test discovery_test_plugin
run_pytest(session, "tests/test_plugins/discovery_test_plugin", "--noconftest")
# run namespace config loader tests
run_pytest(session, "tests/test_plugins/namespace_pkg_config_source_test")
# Install and test example app
session.chdir(f"{BASE}/examples/advanced/hydra_app_example")
session.run(*install_cmd, ".", silent=SILENT)
run_pytest(session, ".")
@nox.session(python=PYTHON_VERSIONS)
@nox.parametrize(
"install_cmd",
PLUGINS_INSTALL_COMMANDS,
ids=[" ".join(x) for x in PLUGINS_INSTALL_COMMANDS],
)
def test_plugins(session, install_cmd):
_upgrade_basic(session)
session.install("pytest")
install_hydra(session, install_cmd)
selected_plugin = select_plugins(session)
for plugin in selected_plugin:
cmd = list(install_cmd) + [os.path.join("plugins", plugin.path)]
session.run(*cmd, silent=SILENT)
if not SILENT:
session.run("pipdeptree", "-p", plugin.name)
# Test that we can import Hydra
session.run("python", "-c", "from hydra import main", silent=SILENT)
# Test that we can import all installed plugins
for plugin in selected_plugin:
session.run("python", "-c", f"import {plugin.module}")
# Run Hydra tests to verify installed plugins did not break anything
if not SKIP_CORE_TESTS:
run_pytest(session, "tests")
else:
session.log("Skipping Hydra core tests")
# Run tests for all installed plugins
for plugin in selected_plugin:
# install all other plugins that are compatible with the current Python version
session.chdir(os.path.join(BASE, "plugins", plugin.path))
run_pytest(session)
@nox.session(python="3.8")
def coverage(session):
coverage_env = {
"COVERAGE_HOME": BASE,
"COVERAGE_FILE": f"{BASE}/.coverage",
"COVERAGE_RCFILE": f"{BASE}/.coveragerc",
}
_upgrade_basic(session)
session.install("coverage", "pytest")
install_hydra(session, ["pip", "install", "-e"])
session.run("coverage", "erase")
selected_plugins = select_plugins(session)
for plugin in selected_plugins:
session.run(
"pip", "install", "-e", os.path.join("plugins", plugin.path), silent=SILENT,
)
session.run("coverage", "erase", env=coverage_env)
# run plugin coverage
for plugin in selected_plugins:
session.chdir(os.path.join("plugins", plugin.path))
cov_args = ["coverage", "run", "--append", "-m"]
cov_args.extend(pytest_args(session))
session.run(*cov_args, silent=SILENT, env=coverage_env)
session.chdir(BASE)
# run hydra-core coverage
session.run(
"coverage",
"run",
"--append",
"-m",
silent=SILENT,
env=coverage_env,
*pytest_args(session),
)
# Increase the fail_under as coverage improves
session.run("coverage", "report", "--fail-under=80", env=coverage_env)
session.run("coverage", "erase", env=coverage_env)
@nox.session(python=PYTHON_VERSIONS)
def test_jupyter_notebooks(session):
versions = copy.copy(DEFAULT_PYTHON_VERSIONS)
if session.python not in versions:
session.skip(
f"Not testing Jupyter notebook on Python {session.python}, supports [{','.join(versions)}]"
)
# pyzmq 19.0.1 has installation issues on Windows
session.install("jupyter", "nbval", "pyzmq==19.0.0")
install_hydra(session, ["pip", "install", "-e"])
args = pytest_args(
session, "--nbval", "examples/notebook/hydra_notebook_example.ipynb"
)
# Jupyter notebook test on Windows yield warnings
args = [x for x in args if x != "-Werror"]
session.run(*args, silent=SILENT)
args = pytest_args(session, "--nbval", "examples/notebook/%run_test.ipynb")
args = [x for x in args if x != "-Werror"]
session.run(*args, silent=SILENT)
|