Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Server version check for tests #2544

Closed
SoulPancake opened this issue Apr 11, 2023 · 4 comments
Closed

Server version check for tests #2544

SoulPancake opened this issue Apr 11, 2023 · 4 comments

Comments

@SoulPancake
Copy link
Contributor

In the redis-py library we use decorators like
@skip_if_server_version_lt("7.2.0")
to avoid running tests for incompatible server versions,
Can we come up with something for this library as well, then we can avoid worrying about the test server versions here everytime we want to build support for something?

@monkey92t
Copy link
Collaborator

I don't have much experience with Python, do you have any good ideas?

@SoulPancake
Copy link
Contributor Author

My thoughts :
In the BeforeEach nodes we can fetch the server version
And then do something like this

	It("should NewFunction", func() {
		if !VersionAtLeast(serverVersion, "7.2.0") {
			Skip("Test requires Redis server version 7.2.0 or higher")
		}

		// test stuff
	})

@ndyakov
Copy link
Collaborator

ndyakov commented Mar 25, 2025

There is a solution for this in v9.8.0-beta.1:

func SkipBeforeRedisVersion(version float64, msg string) {

@ndyakov ndyakov closed this as completed Mar 25, 2025
@SoulPancake
Copy link
Contributor Author

LG @ndyakov

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants