From 5373e3c6307d64711c8b03b86b9eafd7d9d45bbd 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 --- .jenkins/common.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jenkins/common.groovy b/.jenkins/common.groovy index c893f9fd8e..14c644b026 100644 --- a/.jenkins/common.groovy +++ b/.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)