From 7c016f54f0fae148952eba5bb3128bad765efe45 Mon Sep 17 00:00:00 2001 From: filipecosta90 Date: Wed, 16 Feb 2022 12:32:47 +0000 Subject: [PATCH 1/2] Removed test_commands.py given it's not ready yet --- utils/tests/test_commands.py | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 utils/tests/test_commands.py diff --git a/utils/tests/test_commands.py b/utils/tests/test_commands.py deleted file mode 100644 index d53914d..0000000 --- a/utils/tests/test_commands.py +++ /dev/null @@ -1,12 +0,0 @@ -import json - -from redis_benchmarks_specification.commands.commands import generate_command_groups - - -def test_generate_command_groups(): - with open( - "./redis_benchmarks_specification/setups/topologies/topologies.yml", "r" - ) as json_fd: - commands_json = json.load(json_fd) - command_groups = generate_command_groups(commands_json) - assert "server" in command_groups.keys() From 828b98b89456a8b4d2405fc01ea5a1994ed062f0 Mon Sep 17 00:00:00 2001 From: filipecosta90 Date: Fri, 6 May 2022 16:35:52 +0100 Subject: [PATCH 2/2] Bumping version from 0.1.29 to 0.1.30 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f0571eb..e9665e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "redis-benchmarks-specification" -version = "0.1.29" +version = "0.1.30" description = "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." authors = ["filipecosta90 ","Redis Performance Group "] readme = "Readme.md"