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 ef250ca commit 226943cCopy full SHA for 226943c
test/suites/standard2/configuration.robot
@@ -141,6 +141,14 @@ Crio Uses Crun Runtime
141
${stdout} ${stderr} ${rc}= Command Execution rpm -q microshift-low-latency
142
IF ${rc} == 0 Should Contain ${runtime} high-performance
143
144
+Http Proxy Is Not Defined
145
+ [Documentation] Verify that the http proxy environment variables are not defined
146
+
147
+ ${stdout} ${stderr} ${rc}= Command Execution env | grep -iE 'http_proxy|https_proxy|no_proxy'
148
+ # The grep command returns a non-zero code when the output is empty
149
+ Should Not Be Equal ${rc} 0
150
+ Should Be Empty ${stdout}
151
152
153
*** Keywords ***
154
Setup
0 commit comments