Skip to content

Commit

Permalink
chore(deps): update devdeps non-major (#564)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Robert Kaussow <[email protected]>
  • Loading branch information
renovate[bot] and xoxys authored Apr 29, 2024
1 parent 8d9d593 commit 762547a
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 31 deletions.
54 changes: 27 additions & 27 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions prometheuspvesd/discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def propagate(self):
try:
qemu_list = self._filter(self.client.get_all_vms(node))
container_list = self._filter(self.client.get_all_containers(node))
except Exception as e: # noqa
except Exception as e:
raise APIError(str(e)) from e

# Merge QEMU and Containers lists from this node
Expand All @@ -192,7 +192,7 @@ def propagate(self):
description = config["description"]
except KeyError:
description = None
except Exception as e: # noqa
except Exception as e:
raise APIError(str(e)) from e

try:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ requests = "2.31.0"
prometheus-pve-sd = "prometheuspvesd.cli:main"

[tool.poetry.group.dev.dependencies]
ruff = "0.4.1"
pytest = "8.1.1"
ruff = "0.4.2"
pytest = "8.2.0"
pytest-mock = "3.14.0"
pytest-cov = "5.0.0"
toml = "0.10.2"
Expand Down

0 comments on commit 762547a

Please sign in to comment.