checkmk-dev-tools 2.1.2__tar.gz → 2.1.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (19) hide show
  1. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/PKG-INFO +2 -2
  2. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/ci_artifacts.py +3 -5
  3. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/jenkins_utils/__init__.py +4 -3
  4. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/version.py +1 -1
  5. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/pyproject.toml +2 -2
  6. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/README.md +0 -0
  7. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/__init__.py +0 -0
  8. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/activity_from_fs.py +0 -0
  9. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/binreplace.py +0 -0
  10. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/check_rpath.py +0 -0
  11. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/cli.py +0 -0
  12. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/cpumon.py +0 -0
  13. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/decent_output.py +0 -0
  14. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/job_resource_usage.py +0 -0
  15. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/last_access.py +0 -0
  16. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/lockable_resources.py +0 -0
  17. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/procmon.py +0 -0
  18. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/pycinfo.py +0 -0
  19. {checkmk_dev_tools-2.1.2 → checkmk_dev_tools-2.1.4}/cmk_dev/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: checkmk-dev-tools
3
- Version: 2.1.2
3
+ Version: 2.1.4
4
4
  Summary: Checkmk DevOps tools
5
5
  Author: Frans Fürst
6
6
  Author-email: frans.fuerst@checkmk.com
@@ -14,7 +14,7 @@ Requires-Dist: pydantic (>=2,<3)
14
14
  Requires-Dist: python-jenkins (>=1.8.3,<1.9.0)
15
15
  Requires-Dist: rich
16
16
  Requires-Dist: trickkiste (>=0.3.4,<0.4.0)
17
- Project-URL: Changelog, https://github.com/Checkmk/checkmk-dev-tools/blob/release/2.1.2/changelog.md
17
+ Project-URL: Changelog, https://github.com/Checkmk/checkmk-dev-tools/blob/release/2.1.4/changelog.md
18
18
  Project-URL: Repository, https://github.com/Checkmk/checkmk-dev-tools
19
19
  Description-Content-Type: text/markdown
20
20
 
@@ -582,7 +582,7 @@ async def build_id_from_queue_item(
582
582
  ) -> BuildId:
583
583
  """Waits for queue item with given @queue_id to be scheduled and returns Build instance"""
584
584
  if queue_item is None:
585
- queue_item = await client.queue_item(queue_id)
585
+ queue_item = await client.queue_item(queue_id, depth=1)
586
586
 
587
587
  log().info(
588
588
  "waiting for queue item %s to be scheduled (%s%s)",
@@ -592,7 +592,7 @@ async def build_id_from_queue_item(
592
592
  )
593
593
 
594
594
  while True:
595
- queue_item = await client.queue_item(queue_id)
595
+ queue_item = await client.queue_item(queue_id, depth=1)
596
596
  if queue_item.executable:
597
597
  return queue_item.executable.number
598
598
  log().debug("still waiting in queue, because %s", queue_item.why)
@@ -640,9 +640,7 @@ async def find_matching_queue_item(
640
640
  """Looks for a queued build matching job and parameters and returns the QueueId"""
641
641
  log().debug("Checking queued items with the Jenkins API")
642
642
 
643
- for simple_queue_item in await jenkins_client.queue_info():
644
- queue_item = await jenkins_client.queue_item(simple_queue_item.id, depth=2)
645
-
643
+ for queue_item in await jenkins_client.queue_info():
646
644
  # In order to compare with `job.url` we would have to inject the jenkins base URL
647
645
  # Instead we can also strip it off from `job.url` and compare relative URLs instead
648
646
  # Instead of "https://ci.com/job/name/42/" == "https://ci.com/job/name/42/" we compare
@@ -695,9 +695,10 @@ def _set_jenkins_client_user_agent() -> Generator[None, None, None]:
695
695
  # Preserve an maybe externall set user agent setting
696
696
  given_user_agent = os.environ.get(env_var_name)
697
697
 
698
- os.environ[env_var_name] = (
699
- f"User-Agent: ci-artifacts {__version__} (python-requests {requests.__version__})"
700
- )
698
+ if not given_user_agent:
699
+ os.environ[env_var_name] = (
700
+ f"User-Agent: ci-artifacts {__version__} (python-requests {requests.__version__})"
701
+ )
701
702
  try:
702
703
  yield
703
704
  finally:
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
2
  # -*- coding: UTF-8 -*-
3
3
 
4
- __version_info__ = ("2", "1", "2")
4
+ __version_info__ = ("2", "1", "4")
5
5
  __version__ = '.'.join(__version_info__)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "checkmk-dev-tools"
3
- version = "2.1.2" # will-be-updated-automatically
3
+ version = "2.1.4" # will-be-updated-automatically
4
4
  description = "Checkmk DevOps tools"
5
5
  authors = [
6
6
  "Frans Fürst <frans.fuerst@checkmk.com>",
@@ -14,7 +14,7 @@ exclude = ["cmk_dev/out"]
14
14
 
15
15
  [tool.poetry.urls]
16
16
  Repository = "https://github.com/Checkmk/checkmk-dev-tools"
17
- Changelog = "https://github.com/Checkmk/checkmk-dev-tools/blob/release/2.1.2/changelog.md"
17
+ Changelog = "https://github.com/Checkmk/checkmk-dev-tools/blob/release/2.1.4/changelog.md"
18
18
 
19
19
  [tool.poetry.scripts]
20
20
  activity-from-fs = 'cmk_dev.activity_from_fs:main'