Skip to content

enable tests for license manager for ArangoDB versions >3.12.5 #549

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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,12 @@ def _check_versions_eligible(self):
"""Check that test suite is compatible with ArangoDB versions that are being tested.
If not, disable test suite.
"""
self.__class__.is_disabled = True
# pylint: disable=no-member
self.__class__.disable_reasons.append("TODO: WIP!") # pylint: disable=no-else-return
#if self.new_version is not None and semver.VersionInfo.parse(self.new_version) <= semver.VersionInfo.parse(
# "3.12.5"
#):
# return False, "This test suite is only applicable to versions above 3.12.5"
#else:
# return True, None
if self.new_version is not None and semver.VersionInfo.parse(self.new_version) <= semver.VersionInfo.parse(
"3.12.5"
):
return False, "This test suite is only applicable to versions above 3.12.5"
else:
return True, None

@staticmethod
def sleep(seconds: int = 60):
Expand Down