Add py33 target into tox.ini
Enable tests that could be imported into py33 environment. Part of blueprint bp/py33 Change-Id: I097e406cda3b86ad75e6f2f780b9a700b4fe42ef
This commit is contained in:
@@ -108,10 +108,10 @@ def read_json_from_uri(uri):
|
||||
|
||||
def make_range(start, stop, step):
|
||||
last_full = stop - ((stop - start) % step)
|
||||
for i in xrange(start, last_full, step):
|
||||
yield xrange(i, i + step)
|
||||
for i in six.moves.xrange(start, last_full, step):
|
||||
yield six.moves.xrange(i, i + step)
|
||||
if stop > last_full:
|
||||
yield xrange(last_full, stop)
|
||||
yield six.moves.xrange(last_full, stop)
|
||||
|
||||
|
||||
def store_user(runtime_storage_inst, user):
|
||||
|
||||
Reference in New Issue
Block a user