Skip to content

Commit b4cf1b0

Browse files
authored
Spelling (#5)
* spelling: equal Signed-off-by: Josh Soref <[email protected]> * spelling: functionality Signed-off-by: Josh Soref <[email protected]> * spelling: implemented Signed-off-by: Josh Soref <[email protected]> * spelling: integration Signed-off-by: Josh Soref <[email protected]> * spelling: timeout Signed-off-by: Josh Soref <[email protected]> * spelling: version Signed-off-by: Josh Soref <[email protected]> * spelling: versions Signed-off-by: Josh Soref <[email protected]> --------- Signed-off-by: Josh Soref <[email protected]>
1 parent dcf5c70 commit b4cf1b0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
pytest-version: ['6.2.5', '7.4.3']
1717
steps:
1818
- uses: actions/checkout@v4
19-
- name: Set the server verison for python integeration tests
19+
- name: Set the server version for python integration tests
2020
run: echo "SERVER_VERSION=unstable" >> $GITHUB_ENV
2121
- name: Make valkey-server binary
2222
run: |

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# valkey-test-framework
22
Valkey-test-framework is a python framework for creating integration tests using Valkey. With this, users developing software around Valkey (e.g Modules, extensions to Valkey, or even core Valkey itself) can easily set up python integration tests to validate functionality. The framework is designed to be simple and flexible.
33

4-
It allows various functionalities including: Starting up custom Valkey Servers per TestClass or per individual Test, Customizing server startup arguments (e.g. module load, configs), custom server binary path, Replication Testing, Waiter functionlity, etc.
4+
It allows various functionalities including: Starting up custom Valkey Servers per TestClass or per individual Test, Customizing server startup arguments (e.g. module load, configs), custom server binary path, Replication Testing, Waiter functionality, etc.
55

6-
It uses pytest for identifying test files (and running the individual test classes containing all the tests). The framework is compatible with pytest verions up till 7.4.3.
6+
It uses pytest for identifying test files (and running the individual test classes containing all the tests). The framework is compatible with pytest versions up till 7.4.3.
77

88
## Build instructions
99

src/util/waiters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
wait for a given function to return a value that satisfies the given operator, and
55
assert that this happens within a timeout.
66
Currently implemented: equal
7-
Future implemanted: true, not equal, greater than, greater or equal than, less than, less or euqal than
7+
Future implemented: true, not equal, greater than, greater or equal than, less than, less or equal than
88
All the function get the following parameters:
99
args:
1010
func: The function to call

src/valkey_test_case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ def wait_for_value_propagate_to_replicas(self, key, value, db=0):
655655
wait_for_equal(
656656
lambda: self.replicas[i].clients[db].get(key),
657657
value,
658-
timout=TEST_MAX_WAIT_TIME_SECONDS,
658+
timeout=TEST_MAX_WAIT_TIME_SECONDS,
659659
)
660660

661661
def waitForReplicaOffsetToSyncUp(self, primary, replica):

0 commit comments

Comments
 (0)