We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f40a096 commit ed27288Copy full SHA for ed27288
test/test_gpu/main.py
@@ -18,7 +18,11 @@
18
fbcode_skip_file_path = "fb/skip_tests_h100_fbcode.yaml"
19
SKIP_FILE = importlib.resources.files(__package__).joinpath(fbcode_skip_file_path)
20
else:
21
- SKIP_FILE = "skip_tests_h100_pytorch.yaml"
+ import os
22
+
23
+ SKIP_FILE = os.path.abspath(
24
+ os.path.dirname(__file__).join("skip_tests_h100_pytorch.yaml")
25
+ )
26
27
with open(SKIP_FILE, "r") as f:
28
skip_tests = yaml.safe_load(f)
0 commit comments