Appease CI setup
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2020-08-05 08:08:41 +02:00
parent 81368b02c2
commit 1fde858fe6
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
3 changed files with 3 additions and 2 deletions

View File

@ -58,7 +58,7 @@ commands = pytest test/ --cov={toxinidir}/simple_message_channels/ --no-cov-on-f
[testenv:lint]
skipdist = True
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]
skipdist = True

View File

@ -1,5 +1,5 @@
"""Sans I/O wire protocol for Hypercore"""
from typing import List, Optional, Tuple
from typing import List, Tuple
import attr
from pyvarint import encode, encoding_length

View File

@ -1,4 +1,5 @@
import pytest
from simple_message_channels import SimpleMessageChannel as SMC