Skip to content

Commit

Permalink
Merge branch 'rabdulfaizy/test' of https://github.com/microsoft/lisa
Browse files Browse the repository at this point in the history
…into rabdulfaizy/test

reboot time to 600s
  • Loading branch information
rabdulfaizy committed Feb 23, 2025
2 parents 34f6c06 + 6de72ae commit d5a9f07
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions lisa/util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,7 @@ def parse_version(version: str) -> VersionInfo:
belong to a basic version.
:rtype: tuple(:class:`Version` | None, str)
"""
version = '13.0'
if VersionInfo.isvalid(version):
return VersionInfo.parse(version)

Expand Down
2 changes: 2 additions & 0 deletions microsoft/testsuites/core/vm_resize.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ def _verify_vm_resize(
except Exception as identifier:
if "no available size for resizing" in str(identifier):
raise SkippedException(str(identifier))
print(str(identifier))
if (
"cannot find current vm size in eligible list" in str(identifier)
or "OperationNotAllowed" in str(identifier)
Expand All @@ -150,6 +151,7 @@ def _verify_vm_resize(
or "Following SKUs have failed for Capacity Restrictions"
in str(identifier)
):
print(retry)
retry = retry + 1
else:
raise identifier
Expand Down
2 changes: 1 addition & 1 deletion microsoft/testsuites/stress/stress_ng_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
""",
)
class StressNgTestSuite(TestSuite):
TIME_OUT = 3600
TIME_OUT = 16000
CONFIG_VARIABLE = "stress_ng_jobs"

@TestCaseMetadata(
Expand Down

0 comments on commit d5a9f07

Please sign in to comment.