Skip to content

Commit db4e6e6

Browse files
authored
[NVGPU] Disable nvdsl lit tests if python bindings not enabled (#170898)
A recent change #167321 enabled nvdsl examples to be run by default. These examples require MLIR python bindings to be enabled, and this PR makes sure they're skipped if `config.enable_bindings_python` is not enabled.
1 parent 3de977c commit db4e6e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
config.unsupported = False
2-
if not config.enable_cuda_runner:
2+
if not config.enable_cuda_runner or not config.enable_bindings_python:
33
config.unsupported = True
44

0 commit comments

Comments
 (0)