Appease CI setup
Alle checks waren succesvol
continuous-integration/drone/push Build is passing

This commit is contained in:
Luke Murphy
2020-08-05 08:08:41 +02:00
bovenliggende 81368b02c2
commit 1fde858fe6
3 gewijzigde bestanden met toevoegingen van 3 en 2 verwijderingen

Bestand weergeven

@ -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

Bestand weergeven

@ -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

Bestand weergeven

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