mirror of
https://github.com/ProtoThis/python-synology.git
synced 2025-07-31 02:53:57 +00:00

* Replace setup files with pyproject.toml Now we can use poetry to manage the package. poetry install to install the package in a venv poetry run ... to launch pylint, pytest or black * Add CI with GitHub Action Add a tests and release workflow Add release drafter Add dependabot * Remove old CI based on travis and pylint * Add linting configuration files Linting mainly based on flake8 and plugins. Add specific files for darglint and mypy. * Update .gitignore * Add test suite with nox and pre-commit Test suite inculde pre-commit, safety, mypy, tests, typguard and documentation checks. * Add .gitattributes * Update code coverage target to 80% * Code style update by Black * Update poetry lock file * Deactivate temporarly some linting tests * Add a contributing guide * Remove Python 3.6 in GitHub Action * Patch noxfile.py to be able to test mypy session * Rebase version to 1.0.0
189 lines
5.3 KiB
Python
189 lines
5.3 KiB
Python
"""Nox sessions."""
|
|
import shutil
|
|
import sys
|
|
from pathlib import Path
|
|
from textwrap import dedent
|
|
|
|
import nox
|
|
import nox_poetry.patch
|
|
from nox.sessions import Session
|
|
|
|
|
|
package = "synology_dsm"
|
|
python_versions = ["3.9", "3.8", "3.7"]
|
|
# Comment some sessions as they need to work on the code to not fail.
|
|
# Will be activated in future release.
|
|
nox.options.sessions = (
|
|
"pre-commit",
|
|
"safety",
|
|
# "mypy",
|
|
"tests",
|
|
# "typeguard",
|
|
# "xdoctest",
|
|
# "docs-build",
|
|
)
|
|
|
|
|
|
def activate_virtualenv_in_precommit_hooks(session: Session) -> None:
|
|
"""Activate virtualenv in hooks installed by pre-commit.
|
|
|
|
This function patches git hooks installed by pre-commit to activate the
|
|
session's virtual environment. This allows pre-commit to locate hooks in
|
|
that environment when invoked from git.
|
|
|
|
Args:
|
|
session: The Session object.
|
|
"""
|
|
if session.bin is None:
|
|
return
|
|
|
|
virtualenv = session.env.get("VIRTUAL_ENV")
|
|
if virtualenv is None:
|
|
return
|
|
|
|
hookdir = Path(".git") / "hooks"
|
|
if not hookdir.is_dir():
|
|
return
|
|
|
|
for hook in hookdir.iterdir():
|
|
if hook.name.endswith(".sample") or not hook.is_file():
|
|
continue
|
|
|
|
text = hook.read_text()
|
|
bindir = repr(session.bin)[1:-1] # strip quotes
|
|
if not (
|
|
Path("A") == Path("a") and bindir.lower() in text.lower() or bindir in text
|
|
):
|
|
continue
|
|
|
|
lines = text.splitlines()
|
|
if not (lines[0].startswith("#!") and "python" in lines[0].lower()):
|
|
continue
|
|
|
|
header = dedent(
|
|
f"""\
|
|
import os
|
|
os.environ["VIRTUAL_ENV"] = {virtualenv!r}
|
|
os.environ["PATH"] = os.pathsep.join((
|
|
{session.bin!r},
|
|
os.environ.get("PATH", ""),
|
|
))
|
|
"""
|
|
)
|
|
|
|
lines.insert(1, header)
|
|
hook.write_text("\n".join(lines))
|
|
|
|
|
|
@nox.session(name="pre-commit", python="3.9")
|
|
def precommit(session: Session) -> None:
|
|
"""Lint using pre-commit."""
|
|
args = session.posargs or ["run", "--all-files", "--show-diff-on-failure"]
|
|
session.install(
|
|
"black",
|
|
"darglint",
|
|
"flake8",
|
|
"flake8-bandit",
|
|
"flake8-bugbear",
|
|
"flake8-docstrings",
|
|
"flake8-rst-docstrings",
|
|
"pep8-naming",
|
|
"pre-commit",
|
|
"pre-commit-hooks",
|
|
"reorder-python-imports",
|
|
)
|
|
session.run("pre-commit", *args)
|
|
if args and args[0] == "install":
|
|
activate_virtualenv_in_precommit_hooks(session)
|
|
|
|
|
|
@nox.session(python="3.9")
|
|
def safety(session: Session) -> None:
|
|
"""Scan dependencies for insecure packages."""
|
|
requirements = nox_poetry.export_requirements(session)
|
|
session.install("safety")
|
|
session.run("safety", "check", f"--file={requirements}", "--bare")
|
|
|
|
|
|
@nox.session(python=python_versions)
|
|
def mypy(session: Session) -> None:
|
|
"""Type-check using mypy."""
|
|
args = session.posargs or ["src", "tests"]
|
|
session.install(".")
|
|
session.install("mypy", "pytest")
|
|
session.run("mypy", *args)
|
|
if not session.posargs:
|
|
session.run("mypy", f"--python-executable={sys.executable}", "noxfile.py")
|
|
|
|
|
|
@nox.session(python=python_versions)
|
|
def tests(session: Session) -> None:
|
|
"""Run the test suite."""
|
|
session.install(".")
|
|
session.install("coverage[toml]", "pytest", "pygments")
|
|
try:
|
|
session.run("coverage", "run", "--parallel", "-m", "pytest", *session.posargs)
|
|
finally:
|
|
if session.interactive:
|
|
session.notify("coverage")
|
|
|
|
|
|
@nox.session
|
|
def coverage(session: Session) -> None:
|
|
"""Produce the coverage report."""
|
|
# Do not use session.posargs unless this is the only session.
|
|
has_args = session.posargs and len(session._runner.manifest) == 1
|
|
args = session.posargs if has_args else ["report"]
|
|
|
|
session.install("coverage[toml]")
|
|
|
|
if not has_args and any(Path().glob(".coverage.*")):
|
|
session.run("coverage", "combine")
|
|
|
|
session.run("coverage", *args)
|
|
|
|
|
|
@nox.session(python=python_versions)
|
|
def typeguard(session: Session) -> None:
|
|
"""Runtime type checking using Typeguard."""
|
|
session.install(".")
|
|
session.install("pytest", "typeguard", "pygments")
|
|
session.run("pytest", f"--typeguard-packages={package}", *session.posargs)
|
|
|
|
|
|
@nox.session(python=python_versions)
|
|
def xdoctest(session: Session) -> None:
|
|
"""Run examples with xdoctest."""
|
|
args = session.posargs or ["all"]
|
|
session.install(".")
|
|
session.install("xdoctest[colors]")
|
|
session.run("python", "-m", "xdoctest", package, *args)
|
|
|
|
|
|
@nox.session(name="docs-build", python="3.8")
|
|
def docs_build(session: Session) -> None:
|
|
"""Build the documentation."""
|
|
args = session.posargs or ["docs", "docs/_build"]
|
|
session.install(".")
|
|
session.install("sphinx", "sphinx-rtd-theme")
|
|
|
|
build_dir = Path("docs", "_build")
|
|
if build_dir.exists():
|
|
shutil.rmtree(build_dir)
|
|
|
|
session.run("sphinx-build", *args)
|
|
|
|
|
|
@nox.session(python="3.8")
|
|
def docs(session: Session) -> None:
|
|
"""Build and serve the documentation with live reloading on file changes."""
|
|
args = session.posargs or ["--open-browser", "docs", "docs/_build"]
|
|
session.install(".")
|
|
session.install("sphinx", "sphinx-autobuild", "sphinx-rtd-theme")
|
|
|
|
build_dir = Path("docs", "_build")
|
|
if build_dir.exists():
|
|
shutil.rmtree(build_dir)
|
|
|
|
session.run("sphinx-autobuild", *args)
|