argus-alm 0.14.0__tar.gz → 0.14.2__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.
- {argus_alm-0.14.0 → argus_alm-0.14.2}/PKG-INFO +4 -2
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/client/driver_matrix_tests/cli.py +2 -2
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/client/driver_matrix_tests/client.py +1 -1
- {argus_alm-0.14.0 → argus_alm-0.14.2}/pyproject.toml +3 -3
- {argus_alm-0.14.0 → argus_alm-0.14.2}/LICENSE +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/README.md +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/__init__.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/client/__init__.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/client/base.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/client/generic/cli.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/client/generic/client.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/client/generic_result.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/client/sct/client.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/client/sct/types.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/client/sirenada/client.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/common/__init__.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/common/enums.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/common/sct_types.py +0 -0
- {argus_alm-0.14.0 → argus_alm-0.14.2}/argus/common/sirenada_types.py +0 -0
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: argus-alm
|
|
3
|
-
Version: 0.14.
|
|
3
|
+
Version: 0.14.2
|
|
4
4
|
Summary: Argus
|
|
5
5
|
Home-page: https://github.com/scylladb/argus
|
|
6
6
|
License: Apache-2.0
|
|
7
7
|
Author: Alexey Kartashov
|
|
8
8
|
Author-email: alexey.kartashov@scylladb.com
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.10,<4.0
|
|
10
10
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
15
|
Requires-Dist: click (>=8.1.3,<9.0.0)
|
|
14
16
|
Requires-Dist: requests (>=2.26.0,<3.0.0)
|
|
@@ -100,8 +100,8 @@ def submit_driver_env(api_key: str, base_url: str, run_id: str, env_path: str, e
|
|
|
100
100
|
@click.option("--base-url", default="https://argus.scylladb.com", help="Base URL for argus instance")
|
|
101
101
|
@click.option("--id", "run_id", required=True, help="UUID (v4 or v1) unique to the job")
|
|
102
102
|
@click.option("--status", required=True, help="Resulting job status")
|
|
103
|
-
def finish_driver_matrix_run(api_key: str, base_url: str, run_id: str, status: str):
|
|
104
|
-
client = ArgusDriverMatrixClient(run_id=run_id, auth_token=api_key, base_url=base_url)
|
|
103
|
+
def finish_driver_matrix_run(api_key: str, base_url: str, run_id: str, status: str, extra_headers: dict):
|
|
104
|
+
client = ArgusDriverMatrixClient(run_id=run_id, auth_token=api_key, base_url=base_url, extra_headers=extra_headers)
|
|
105
105
|
client.finalize_run(run_type=ArgusDriverMatrixClient.test_type, run_id=run_id, body={"status": TestStatus(status)})
|
|
106
106
|
|
|
107
107
|
|
|
@@ -13,7 +13,7 @@ class ArgusDriverMatrixClient(ArgusClient):
|
|
|
13
13
|
SUBMIT_ENV = "/driver_matrix/env/submit"
|
|
14
14
|
|
|
15
15
|
def __init__(self, run_id: UUID, auth_token: str, base_url: str, api_version="v1", extra_headers: dict | None = None) -> None:
|
|
16
|
-
super().__init__(auth_token, base_url, api_version,
|
|
16
|
+
super().__init__(auth_token, base_url, api_version, extra_headers=extra_headers)
|
|
17
17
|
self.run_id = run_id
|
|
18
18
|
|
|
19
19
|
def submit_driver_matrix_run(self, job_name: str, job_url: str) -> None:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "argus-alm"
|
|
3
|
-
version = "0.14.
|
|
3
|
+
version = "0.14.2"
|
|
4
4
|
description = "Argus"
|
|
5
5
|
authors = ["Alexey Kartashov <alexey.kartashov@scylladb.com>", "Łukasz Sójka <lukasz.sojka@scylladb.com>"]
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -21,7 +21,7 @@ optional = true
|
|
|
21
21
|
|
|
22
22
|
[tool.poetry.dependencies]
|
|
23
23
|
requests = "^2.26.0"
|
|
24
|
-
python = "^3.
|
|
24
|
+
python = "^3.10"
|
|
25
25
|
click = "^8.1.3"
|
|
26
26
|
|
|
27
27
|
[tool.poetry.scripts]
|
|
@@ -58,4 +58,4 @@ build-backend = "poetry.core.masonry.api"
|
|
|
58
58
|
|
|
59
59
|
[tool.black]
|
|
60
60
|
line-length = 110
|
|
61
|
-
target-version = ["
|
|
61
|
+
target-version = ["py310"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|