Skip to content

Commit 8c5f4a8

Browse files
committed
correcting the skip test condition
1 parent eb9da84 commit 8c5f4a8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/build-test-linux-x86_64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,7 @@ jobs:
362362
set -euo pipefail
363363
export USE_HOST_DEPS=1
364364
export CI_BUILD=1
365+
export USE_TRTLLM_PLUGINS=1
365366
pushd .
366367
cd tests/py
367368
cd dynamo

tests/py/dynamo/distributed/test_nccl_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def forward(self, x):
4646

4747
class TestGatherNcclOpsConverter(DispatchTestCase):
4848
@unittest.skipIf(
49-
"win" or "aarch64" in platform_str,
49+
"win" in platform_str or "aarch64" in platform_str,
5050
"Skipped on Windows and Jetson: NCCL backend is not supported.",
5151
)
5252
@classmethod

0 commit comments

Comments
 (0)