Skip to content

Commit 147458e

Browse files
committed
disabled aws tests
1 parent b1a6335 commit 147458e

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

CHANGES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
v0.4.0, 28/10/2013 -- Bug corrected in missing data from nmap scan output
2+
Added stop() to terminate nmap scan running in background
13
v0.3.1, 17/06/2013 -- Refactory of objects to isolate each nmap object in a
24
separate file
35
v0.3.0, 17/06/2013 -- Added fingerprint class

libnmap/test/test_backend_plugin_factory.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ def setUp(self):
7272
### 'bucket':"uu72flvjcayratlxi70yh_nmapreport33333",
7373
###},
7474
####Walrus
75-
{'plugin_name': 's3',
76-
'aws_access_key_id': 'UU72FLVJCAYRATLXI70YH',
77-
'aws_secret_access_key': 'wFg7gP5YFHjVlxakw1g1uCC8UR2xVW5ax9ErZCut',
78-
'host':"walrus.ecc.eucalyptus.com",
79-
'path':'/services/Walrus',
80-
'port':8773,
81-
'is_secure':False,
82-
},
75+
# {'plugin_name': 's3', # disabled for now
76+
# 'aws_access_key_id': 'UU72FLVJCAYRATLXI70YH',
77+
# 'aws_secret_access_key': 'wFg7gP5YFHjVlxakw1g1uCC8UR2xVW5ax9ErZCut',
78+
# 'host':"walrus.ecc.eucalyptus.com",
79+
# 'path':'/services/Walrus',
80+
# 'port':8773,
81+
# 'is_secure':False,
82+
# },
8383
#S3
8484
###{'plugin_name': 's3',
8585
### 'aws_access_key_id': 'YOURKEY',
@@ -153,12 +153,12 @@ def test_backend_delete(self):
153153

154154

155155
if __name__ == '__main__':
156-
# test_suite = ['test_backend_factory',
157-
# 'test_backend_insert',
158-
# 'test_backend_get',
159-
# 'test_backend_getall',
160-
# 'test_backend_delete'
161-
# ]
156+
test_suite = ['test_backend_factory',
157+
'test_backend_insert',
158+
'test_backend_get',
159+
'test_backend_getall',
160+
'test_backend_delete'
161+
]
162162
test_suite = []
163163
suite = unittest.TestSuite(map(TestNmapBackendPlugin, test_suite))
164164
test_result = unittest.TextTestRunner(verbosity=5).run(suite)

0 commit comments

Comments
 (0)