We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86169a9 commit e4f5f0dCopy full SHA for e4f5f0d
test/smoke_test/smoke_test.py
@@ -17,7 +17,7 @@
17
stable_version = os.getenv("MATRIX_STABLE_VERSION")
18
package_type = os.getenv("MATRIX_PACKAGE_TYPE")
19
target_os = os.getenv("TARGET_OS")
20
-BASE_DIR = Path(__file__).parent.parent
+BASE_DIR = Path(__file__).parent.parent.parent
21
22
is_cuda_system = gpu_arch_type == "cuda"
23
NIGHTLY_ALLOWED_DELTA = 3
@@ -85,6 +85,8 @@ def check_version(package: str) -> None:
85
raise RuntimeError(
86
f"{module['name']} version mismatch, expected {release_version[module['name']]} for channel {channel}. But its {module_version}"
87
)
88
+ else:
89
+ print(f"{module['name']} version actual: {module_version} expected: {release_version[module['name']]} for channel {channel}.")
90
91
else:
92
print(f"Skip version check for channel {channel} as stable version is None")
0 commit comments