Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: v5.0-stable
# 409df05d 17-Jan-2024 George Keishing <gkeishin@in.ibm.com>

Robot Framework 7.0 changes

Update robot code syntax overall in the repo

Changes:
- Update the requirement.txt package version for robot
- The '[Return]' setting is deprecated.
Use the

Robot Framework 7.0 changes

Update robot code syntax overall in the repo

Changes:
- Update the requirement.txt package version for robot
- The '[Return]' setting is deprecated.
Use the 'RETURN' statement instead.
- Singular section headers like '*** Test Case ***'
are deprecated. Use plural format like
'*** Test Cases ***' instead.
- Singular section headers like '*** Variable ***'
are deprecated

Tested:
- Ran from sandbox with the version
$ robot --version
Robot Framework 7.0 (Python 3.10.12 on linux)

and also tested on latest python version

Robot Framework 7.0 (Python 3.11.9 on linux)

Change-Id: I54e85f9d799556c63b9a39f79483f83e9b980768
Signed-off-by: George Keishing <gkeishin@in.ibm.com>

show more ...


Revision tags: v4.0-stable, robotframework-requests, v2.10-Hardknott
# 3a537b60 01-Apr-2021 Tony Lee <tony.lee@quantatw.com>

Added test to test sensor monitoring

Verify the Redfish sensor monitoring by an expected sensor table.
Tester need to prepare a python file as below.
An example table of expected sensors:
redfi

Added test to test sensor monitoring

Verify the Redfish sensor monitoring by an expected sensor table.
Tester need to prepare a python file as below.
An example table of expected sensors:
redfish_sensor_info_map = {
${OPENBMC_MODEL}:{
"Voltage":{
"Voltage0",
...
},
"Temperature":{
"DIMM0",
...
}
"Fans":{
"Fan0",
...
}...
}
}

Signed-off-by: Tony Lee <tony.lee@quantatw.com>
Change-Id: Ib3038c757011706c33480cacc8c56c54ede03b85

show more ...