diff --git a/tank/test_models.py b/tank/test_models.py index ec16c46d..cf5b6967 100644 --- a/tank/test_models.py +++ b/tank/test_models.py @@ -348,7 +348,11 @@ class SharkModuleTest(unittest.TestCase): self.pytestconfig.getoption("dispatch_benchmarks_dir") ) - if config["xfail_cpu"] == "True" and device == "cpu": + if config["xfail_cpu"] == "True" and device in [ + "cpu", + "cpu-sync", + "cpu-task", + ]: pytest.xfail(reason=config["xfail_reason"]) if config["xfail_cuda"] == "True" and device == "cuda":