mirror of
https://github.com/borgbase/vorta
synced 2024-12-21 23:33:13 +00:00
675010e401
* fix PEP8 E721 do not compare types, for exact checks use `is` / `is not`, for instance checks use `isinstance()` * remove redundant parentheses * fix SiteWorker.run for empty job queue local variable job is not assigned if queue was empty when calling .run(), but it is used in exception handler. * remove unreachable code in parse_diff_lines * bug fix for unreachable code in is_worker_running the code intended to check if *any* worker is running for any site was *unreachable*. this caused false negative results for site=None. * check_failed_response: remove outdated part of docstring * pull request template: fix relative path to LICENSE.txt * fix typos * use logger.warning, .warn is deprecated
56 lines
2 KiB
Python
56 lines
2 KiB
Python
import os
|
|
import re
|
|
import sys
|
|
|
|
import nox
|
|
|
|
borg_version = os.getenv("BORG_VERSION")
|
|
|
|
if borg_version:
|
|
# Use specified borg version
|
|
supported_borgbackup_versions = [borg_version]
|
|
else:
|
|
# Generate a list of borg versions compatible with system installed python version
|
|
system_python_version = tuple(sys.version_info[:3])
|
|
|
|
supported_borgbackup_versions = [
|
|
borgbackup
|
|
for borgbackup in ("1.1.18", "1.2.2", "1.2.4", "2.0.0b6")
|
|
# Python version requirements for borgbackup versions
|
|
if (borgbackup == "1.1.18" and system_python_version >= (3, 5, 0))
|
|
or (borgbackup == "1.2.2" and system_python_version >= (3, 8, 0))
|
|
or (borgbackup == "1.2.4" and system_python_version >= (3, 8, 0))
|
|
or (borgbackup == "2.0.0b6" and system_python_version >= (3, 9, 0))
|
|
]
|
|
|
|
|
|
@nox.session
|
|
@nox.parametrize("borgbackup", supported_borgbackup_versions)
|
|
def run_tests(session, borgbackup):
|
|
# install borgbackup
|
|
if sys.platform == 'darwin':
|
|
# in macOS there's currently no fuse package which works with borgbackup directly
|
|
session.install(f"borgbackup=={borgbackup}")
|
|
elif borgbackup == "1.1.18":
|
|
# borgbackup 1.1.18 doesn't support pyfuse3
|
|
session.install("llfuse")
|
|
session.install(f"borgbackup[llfuse]=={borgbackup}")
|
|
else:
|
|
session.install(f"borgbackup[pyfuse3]=={borgbackup}")
|
|
|
|
# install dependencies
|
|
session.install("-r", "requirements.d/dev.txt")
|
|
session.install("-e", ".")
|
|
|
|
# check versions
|
|
cli_version = session.run("borg", "--version", silent=True).strip()
|
|
cli_version = re.search(r"borg (\S+)", cli_version).group(1)
|
|
python_version = session.run("python", "-c", "import borg; print(borg.__version__)", silent=True).strip()
|
|
|
|
session.log(f"Borg CLI version: {cli_version}")
|
|
session.log(f"Borg Python version: {python_version}")
|
|
|
|
assert cli_version == borgbackup
|
|
assert python_version == borgbackup
|
|
|
|
session.run("pytest", *session.posargs, env={"BORG_VERSION": borgbackup})
|