Merge branch 'develop' into new_exchange_config

# Conflicts:
#	catalyst/exchange/utils/exchange_utils.py
This commit is contained in:
Frederic Fortier
2018-03-01 21:48:30 -05:00
4 changed files with 215 additions and 25 deletions
@@ -107,14 +107,14 @@ class TestSuiteBundle:
print('saved {} test results: {}'.format(end_dt, folder))
assert_frame_equal(
right=data['bundle'],
left=data['exchange'],
right=data['bundle'][:-1],
left=data['exchange'][:-1],
check_less_precise=1,
)
try:
assert_frame_equal(
right=data['bundle'],
left=data['exchange'],
right=data['bundle'][:-1],
left=data['exchange'][:-1],
check_less_precise=min([a.decimals for a in assets]),
)
except Exception as e: