Merge pull request #167 from itsdeka/clean

tests adjustment
This commit is contained in:
Vigan Abdurrahmani
2021-10-11 13:59:03 +02:00
committed by GitHub
5 changed files with 7 additions and 4 deletions

View File

@@ -1,3 +1,6 @@
1.2.3
-) Tests adjusted
1.2.2
-) WS bugfix (exception InvalidStatusCode not handled)

View File

@@ -16,7 +16,7 @@ async def run():
print(trades)
for trade in trades:
orders_ids.append(trade[0])
assert orders_ids == [657815316, 657815314, 657815312, 657815311, 657815309]
assert orders_ids == [657815316, 657815314, 657815312, 657815308, 657815304]
# check that strictly decreasing order id condition is always respected
# check that not increasing timestamp condition is always respected

View File

@@ -2,4 +2,4 @@
This module contains the current version of the bfxapi lib
"""
__version__ = '1.2.2'
__version__ = '1.2.3'

View File

@@ -1,7 +1,7 @@
asyncio==3.4.3
websockets==8.1
pylint==2.3.0
pytest-asyncio==0.10.0
pytest-asyncio==0.15.1
six==1.12.0
pyee==8.0.1
aiohttp==3.4.4

View File

@@ -11,7 +11,7 @@ from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='bitfinex-api-py',
version='1.2.2',
version='1.2.3',
description='Official Bitfinex Python API',
long_description='A Python reference implementation of the Bitfinex API for both REST and websocket interaction',
long_description_content_type='text/markdown',