2
0
mirror of https://opendev.org/x/pyghmi synced 2025-08-25 12:30:20 +00:00

Update test-requirements

Fix ability to get through gate

Change-Id: Iac13cd595c80cad367d06a7b0afc3e53fc7f8ff7
This commit is contained in:
Jarrod Johnson
2017-11-19 09:57:17 -05:00
parent 87cc663751
commit ec20649bfe
3 changed files with 5 additions and 5 deletions

View File

@@ -14,10 +14,10 @@
# limitations under the License.
__author__ = 'jjohnson2@lenovo.com'
#this is a quick sample of how to write something that acts like a bmc
#to play:
# this is a quick sample of how to write something that acts like a bmc
# to play:
# run fakebmc
## ipmitool -I lanplus -U admin -P password -H 127.0.0.1 power status
# # ipmitool -I lanplus -U admin -P password -H 127.0.0.1 power status
# Chassis Power is off
# # ipmitool -I lanplus -U admin -P password -H 127.0.0.1 power on
# Chassis Power Control: Up/On

View File

@@ -31,7 +31,7 @@ import threading
tcattr = termios.tcgetattr(sys.stdin)
newtcattr = tcattr
#TODO(jbjohnso): add our exit handler
# TODO(jbjohnso): add our exit handler
newtcattr[-1][termios.VINTR] = 0
newtcattr[-1][termios.VSUSP] = 0
termios.tcsetattr(sys.stdin, termios.TCSADRAIN, newtcattr)

View File

@@ -1,4 +1,4 @@
hacking>=0.5.6,<0.8
hacking>=0.5.6
coverage>=3.6
discover