roywei commented on a change in pull request #13550: Fixes infinite loop using
imagedetiter
URL: https://github.com/apache/incubator-mxnet/pull/13550#discussion_r239562451
##########
File path: tests/python/unittest/test_image.py
##########
@@ -149,88 +151,90 @@ def test_color_normalize(self):
mx_result = mx.image.color_normalize(mx.nd.array(src),
mx.nd.array(mean), mx.nd.array(std))
assert_almost_equal(mx_result.asnumpy(), (src - mean) / std,
atol=1e-3)
+ @nottest
+ def _test_imageiter_last_batch(self, imageiter_list, assert_data_shape):
Review comment:
rename helper function so you don't need to add `@nottest'?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services