-
Notifications
You must be signed in to change notification settings - Fork 115
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
Adapted PR 120 to new structure #143
base: master
Are you sure you want to change the base?
Conversation
It still has the problem of not being compatible with <8.2 versions. |
Thanks, then maybe leave it for 0.3 |
This has to wait until #144 is merged. |
@SergioBertolinSG already merged 😉 |
8adab16
to
1606e34
Compare
Currently failing because self variable cannot be accessed. This seems to be the path to follow: |
@PVince81 please review. |
current_version_major = current_version[0] | ||
current_version_minor = current_version[1] | ||
if ((current_version_major >= '8') and (current_version_minor >= '2')): | ||
raise unittest.SkipTest("This test should not run against >=8.2 servers"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean "This test should not run against < 8.2 servers" ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, that string is correct, which is not correct is the logic, it should check the major before, I'll change it.
Conflicts. Also I think we can stop support 8.1 as it's EOL. |
Follow up of #120
It adds the expiration date support.
@PVince81 Please review.