redis-benchmarks-specification 0.1.210__py3-none-any.whl → 0.1.211__py3-none-any.whl

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.

Potentially problematic release.


This version of redis-benchmarks-specification might be problematic. Click here for more details.

@@ -90,6 +90,7 @@ def trigger_tests_dockerhub_cli_command_logic(args, project_name, project_versio
90
90
  )
91
91
  build_stream_fields["github_repo"] = args.gh_repo
92
92
  build_stream_fields["github_org"] = args.gh_org
93
+ build_stream_fields["restore_build_artifacts"] = "False"
93
94
  server_name = args.gh_repo
94
95
  if args.server_name is not None:
95
96
  server_name = args.server_name
@@ -6,18 +6,19 @@ def restore_build_artifacts_from_test_details(
6
6
  build_artifacts, conn, temporary_dir, testDetails
7
7
  ):
8
8
  for build_artifact in build_artifacts:
9
- buffer_key = testDetails["{}".format(build_artifact).encode()]
10
- logging.info(
11
- "Reading artifact binary {} from key {}".format(build_artifact, buffer_key)
12
- )
13
- buffer = bytes(conn.get(buffer_key))
14
- artifact_fname = "{}/{}".format(temporary_dir, build_artifact)
15
- with open(artifact_fname, "wb") as fd:
16
- fd.write(buffer)
17
- os.chmod(artifact_fname, 755)
18
- # TODO: re-enable
19
- # if build_artifact == "redis-server":
20
- # redis_server_path = artifact_fname
9
+ build_artifact_key = "{}".format(build_artifact).encode()
10
+ if build_artifact_key in testDetails:
11
+ buffer_key = testDetails[build_artifact_key]
12
+ logging.info(
13
+ "Reading artifact binary {} from key {}".format(
14
+ build_artifact, buffer_key
15
+ )
16
+ )
17
+ buffer = bytes(conn.get(buffer_key))
18
+ artifact_fname = "{}/{}".format(temporary_dir, build_artifact)
19
+ with open(artifact_fname, "wb") as fd:
20
+ fd.write(buffer)
21
+ os.chmod(artifact_fname, 755)
21
22
 
22
23
  logging.info(
23
24
  "Successfully restored {} into {}".format(build_artifact, artifact_fname)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: redis-benchmarks-specification
3
- Version: 0.1.210
3
+ Version: 0.1.211
4
4
  Summary: The Redis benchmarks specification describes the cross-language/tools requirements and expectations to foster performance and observability standards around redis related technologies. Members from both industry and academia, including organizations and individuals are encouraged to contribute.
5
5
  Author: filipecosta90
6
6
  Author-email: filipecosta.90@gmail.com
@@ -8,7 +8,6 @@ Requires-Python: >=3.10.0,<4.0.0
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.10
10
10
  Classifier: Programming Language :: Python :: 3.11
11
- Classifier: Programming Language :: Python :: 3.12
12
11
  Requires-Dist: Flask (>=2.0.3,<3.0.0)
13
12
  Requires-Dist: Flask-HTTPAuth (>=4.4.0,<5.0.0)
14
13
  Requires-Dist: GitPython (>=3.1.20,<4.0.0)
@@ -8,7 +8,7 @@ redis_benchmarks_specification/__builder__/builder.py,sha256=jaAUxVqIlgg9lULxKKU
8
8
  redis_benchmarks_specification/__builder__/schema.py,sha256=1wcmyVJBcWrBvK58pghN9NCoWLCO3BzPsmdKWYfkVog,584
9
9
  redis_benchmarks_specification/__cli__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
10
10
  redis_benchmarks_specification/__cli__/args.py,sha256=ggjDVunIe8LbJ8QGg6Td2ZRgD8qUjX_xCOf4cP780k8,6728
11
- redis_benchmarks_specification/__cli__/cli.py,sha256=SRO5WzhaeeC47oVIvRPC4wY_-W8sZyZ5dLWpEQGvJkk,20044
11
+ redis_benchmarks_specification/__cli__/cli.py,sha256=wMRlIa8t2hbQabtq3sYqBYGBGfxgvqhaHRsacHlRTqk,20105
12
12
  redis_benchmarks_specification/__cli__/stats.py,sha256=wahzZRbpfokv8dQU8O4BH5JFrOZk-l6k8LWdKfue9_0,20204
13
13
  redis_benchmarks_specification/__common__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  redis_benchmarks_specification/__common__/builder_schema.py,sha256=oU6zFrBsmPRgCr2c1zf7bM0o9bCyuqUpooJo0-nIHrE,5747
@@ -27,7 +27,7 @@ redis_benchmarks_specification/__runner__/args.py,sha256=lYvbPd_3ppHZv4f2sRwXcF-
27
27
  redis_benchmarks_specification/__runner__/runner.py,sha256=4ed8mNrZioIYL3XhHenMqeZGPkX1Cy8nbhB8ThyzEKU,48106
28
28
  redis_benchmarks_specification/__self_contained_coordinator__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
29
29
  redis_benchmarks_specification/__self_contained_coordinator__/args.py,sha256=VHjWWjZ0bs05rcQaeZYSFxf1d_0t02PRoXgfrhfF5nU,5770
30
- redis_benchmarks_specification/__self_contained_coordinator__/artifacts.py,sha256=rTVzBzPNDz7myIkiI6ToEh29Jo53Bi5a_zNALscSvKI,840
30
+ redis_benchmarks_specification/__self_contained_coordinator__/artifacts.py,sha256=G8PyioY_xrUVf6DCzSXR5I5YiicfSdGI2fx7GK0-H-8,886
31
31
  redis_benchmarks_specification/__self_contained_coordinator__/build_info.py,sha256=vlg8H8Rxu2falW8xp1GvL1SV1fyBguSbz6Apxc7A2yM,2282
32
32
  redis_benchmarks_specification/__self_contained_coordinator__/clients.py,sha256=voL6zP3RenpZ1A7JKGVkvEWVXI9KYwmnSgVJr6l8o-4,710
33
33
  redis_benchmarks_specification/__self_contained_coordinator__/cpuset.py,sha256=sRvtoJIitppcOpm3R5LbVmSfPEAqPumOqVATnF5Wbek,594
@@ -151,8 +151,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-el
151
151
  redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries-pipeline-10.yml,sha256=7yWCmQTtiypmF1tHGV61z9Zh5EH8CVuETu7bDNC4V6g,1138
152
152
  redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries.yml,sha256=Z6T75dIbjRb4YO1tFIV9K4S_KFzRHfAa4q3kOg0vcHw,1112
153
153
  redis_benchmarks_specification/test-suites/template.txt,sha256=d_edIE7Sxa5X7I2yG-Io0bPdbDIHR0oWFoCA3XUt_EU,435
154
- redis_benchmarks_specification-0.1.210.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
155
- redis_benchmarks_specification-0.1.210.dist-info/METADATA,sha256=y2pBuKydtVOSOVB6FM76Wp8vxF7upGakLG2AYRySZek,22726
156
- redis_benchmarks_specification-0.1.210.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
157
- redis_benchmarks_specification-0.1.210.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
158
- redis_benchmarks_specification-0.1.210.dist-info/RECORD,,
154
+ redis_benchmarks_specification-0.1.211.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
155
+ redis_benchmarks_specification-0.1.211.dist-info/METADATA,sha256=0VxaETsY9gvF3jwE1tOzr7R_N6Dpz5Nk-01D0NZQNqM,22675
156
+ redis_benchmarks_specification-0.1.211.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
157
+ redis_benchmarks_specification-0.1.211.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
158
+ redis_benchmarks_specification-0.1.211.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.0
2
+ Generator: poetry-core 1.5.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any