Merge pull request #14 from planetmint/eckelj/define_chardet

defined explicit chardet version
This commit is contained in:
Sangat Das 2022-01-26 14:49:11 +01:00 committed by GitHub
commit 3960b42936
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 24 additions and 18 deletions

View File

@ -71,6 +71,7 @@ tests_require = [
] + docs_require
install_requires = [
'chardet==3.0.4',
'aiohttp==3.7.4',
'bigchaindb-abci==1.0.7',
'cryptoconditions==0.8.1',

View File

@ -38,11 +38,13 @@ def test_eventify_block_works_with_any_transaction():
block = {'height': 1,
'transactions': [tx, tx_transfer]}
expected_events = [{
expected_events = [
{
'height': 1,
'asset_id': tx.id,
'transaction_id': tx.id
}, {
},
{
'height': 1,
'asset_id': tx_transfer.asset['id'],
'transaction_id': tx_transfer.id

View File

@ -24,6 +24,9 @@ skip_install = True
extras = None
commands = flake8 planetmint tests
[flake8]
ignore = E126 E127 W504 E302 E126 E305
[testenv:docsroot]
basepython = {[base]basepython}
changedir = docs/root/source