From a2a57c12e38c1b4de94b297e416b216d251fefd7 Mon Sep 17 00:00:00 2001 From: Stanley Tsang Date: Tue, 16 Mar 2021 20:38:13 +0000 Subject: [PATCH] Disabling host and fine memory types for CI testing [ROCm/rccl-tests commit: 5373e3c6307d64711c8b03b86b9eafd7d9d45bbd] --- projects/rccl-tests/.jenkins/common.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rccl-tests/.jenkins/common.groovy b/projects/rccl-tests/.jenkins/common.groovy index c893f9fd8e..14c644b026 100644 --- a/projects/rccl-tests/.jenkins/common.groovy +++ b/projects/rccl-tests/.jenkins/common.groovy @@ -27,7 +27,7 @@ def runTestCommand (platform, project) def command = """#!/usr/bin/env bash set -x cd ${project.paths.project_build_prefix} - python3 -m pytest -k "not MPI" --verbose --junitxml=./testreport.xml + python3 -m pytest -k "not MPI and not host and not fine" --verbose --junitxml=./testreport.xml """ platform.runCommand(this, command)