update test

This commit is contained in:
Fanani M. Ihsan 2016-05-30 09:59:39 +07:00
parent 9e6dfacaff
commit a0c0e817ad
2 changed files with 10 additions and 4 deletions

View File

@ -2,4 +2,4 @@ language: python
python:
- "2.7"
# command to run tests
script: notest
script: python test.py

12
test.py
View File

@ -5,10 +5,11 @@ sys.path.append("zk")
import zk
from zk import const
conn = False
zk = zk.ZK('192.168.1.201', port=4370, timeout=5)
print 'Connecting to device ...'
conn = zk.connect()
if conn:
try:
print 'Connecting to device ...'
conn = zk.connect()
print 'Disabling device ...'
zk.disable_device()
print 'Firmware Version: : {}'.format(zk.get_firmware_version())
@ -43,3 +44,8 @@ if conn:
print 'Disconnecting to device ...'
zk.disconnect()
except Exception, e:
print "Process terminate : {}".format(e)
finally:
if conn:
zk.disconnect()