From 69994bd15bffa253147f9a4eed6a088a67defb9e Mon Sep 17 00:00:00 2001 From: Edgar Date: Mon, 13 Jun 2022 09:34:59 -0400 Subject: [PATCH] update pytest before running CI There seems to be in an incompatibility between the python installation used in the CI and pytest. Update pytest before running CI. [ROCm/rccl-tests commit: 67544e2c3450cf04a6784f57ebd09b05853e35cb] --- projects/rccl-tests/.jenkins/common.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/rccl-tests/.jenkins/common.groovy b/projects/rccl-tests/.jenkins/common.groovy index 14c644b026..70dbbd7a3c 100644 --- a/projects/rccl-tests/.jenkins/common.groovy +++ b/projects/rccl-tests/.jenkins/common.groovy @@ -27,6 +27,8 @@ def runTestCommand (platform, project) def command = """#!/usr/bin/env bash set -x cd ${project.paths.project_build_prefix} + python3 -m pip install --upgrade pytest + python3 -m pytest --version python3 -m pytest -k "not MPI and not host and not fine" --verbose --junitxml=./testreport.xml """