This commit is contained in:
parent
81368b02c2
commit
1fde858fe6
@ -58,7 +58,7 @@ commands = pytest test/ --cov={toxinidir}/simple_message_channels/ --no-cov-on-f
|
|||||||
[testenv:lint]
|
[testenv:lint]
|
||||||
skipdist = True
|
skipdist = True
|
||||||
deps = flake8
|
deps = flake8
|
||||||
commands = flake8 {posargs:--max-line-length 80} simple_message_channels/ test/
|
commands = flake8 {posargs:--max-line-length 80} --ignore="E203" simple_message_channels/ test/
|
||||||
|
|
||||||
[testenv:sort]
|
[testenv:sort]
|
||||||
skipdist = True
|
skipdist = True
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
"""Sans I/O wire protocol for Hypercore"""
|
"""Sans I/O wire protocol for Hypercore"""
|
||||||
from typing import List, Optional, Tuple
|
from typing import List, Tuple
|
||||||
|
|
||||||
import attr
|
import attr
|
||||||
from pyvarint import encode, encoding_length
|
from pyvarint import encode, encoding_length
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from simple_message_channels import SimpleMessageChannel as SMC
|
from simple_message_channels import SimpleMessageChannel as SMC
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user