We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cbb0cb commit 0c2eb73Copy full SHA for 0c2eb73
tests/interop/test_validate_gpu_nodes.py
@@ -1,7 +1,6 @@
1
import logging
2
import os
3
import re
4
-import subprocess
5
6
import pytest
7
from ocp_resources.pod import Pod
@@ -156,6 +155,6 @@ def test_validate_gpu_node_role_labels_pods(openshift_dyn_client):
156
155
if len(nvidia_pods) == int(expected_count):
157
logger.info("PASS: Found the expected nvidia pod count for GPU nodes")
158
else:
159
- err_msg = f"Did not find the expected nvidia pod count for GPU nodes"
+ err_msg = "Did not find the expected nvidia pod count for GPU nodes"
160
logger.error(f"FAIL: {err_msg}")
161
assert False, err_msg
0 commit comments