Skip to content

Commit c18a2ba

Browse files
committed
tests: fix skipif condition for deepspeed
1 parent 6765901 commit c18a2ba

File tree

1 file changed

+1
-1
lines changed
  • src/lightning/fabric/utilities/testing

1 file changed

+1
-1
lines changed

src/lightning/fabric/utilities/testing/_runif.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def _runif_reasons(
113113
reasons.append("Standalone execution")
114114
kwargs["standalone"] = True
115115

116-
if deepspeed and not (_DEEPSPEED_AVAILABLE and not _TORCH_GREATER_EQUAL_2_4):
116+
if deepspeed and not (_DEEPSPEED_AVAILABLE and _TORCH_GREATER_EQUAL_2_4):
117117
reasons.append("Deepspeed")
118118

119119
if dynamo:

0 commit comments

Comments
 (0)