mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
Enable all the flake8
This commit is contained in:
parent
49b15bf1e2
commit
afdddcac0a
3 changed files with 10 additions and 8 deletions
|
|
@ -1,7 +1,8 @@
|
|||
import pytest
|
||||
|
||||
from .utils import (base_hash_test, encrypt_test, hash_test,
|
||||
long_string_hash_test)
|
||||
from .utils import (
|
||||
base_hash_test, encrypt_test, hash_test, long_string_hash_test
|
||||
)
|
||||
|
||||
|
||||
class TestEncryptTest(object):
|
||||
|
|
|
|||
|
|
@ -15,10 +15,12 @@ import textwrap
|
|||
|
||||
import pytest
|
||||
|
||||
from .utils import (load_nist_vectors, load_nist_vectors_from_file,
|
||||
load_cryptrec_vectors, load_cryptrec_vectors_from_file,
|
||||
load_openssl_vectors, load_openssl_vectors_from_file, load_hash_vectors,
|
||||
load_hash_vectors_from_file)
|
||||
from .utils import (
|
||||
load_nist_vectors, load_nist_vectors_from_file, load_cryptrec_vectors,
|
||||
load_cryptrec_vectors_from_file, load_openssl_vectors,
|
||||
load_openssl_vectors_from_file, load_hash_vectors,
|
||||
load_hash_vectors_from_file
|
||||
)
|
||||
|
||||
|
||||
def test_load_nist_vectors_encrypt():
|
||||
|
|
|
|||
3
tox.ini
3
tox.ini
|
|
@ -19,8 +19,7 @@ commands =
|
|||
|
||||
[testenv:pep8]
|
||||
deps = flake8
|
||||
# E128 continuation line under-indented for visual indent
|
||||
commands = flake8 --ignore="E128" .
|
||||
commands = flake8 .
|
||||
|
||||
[flake8]
|
||||
exclude = .tox,*.egg
|
||||
|
|
|
|||
Loading…
Reference in a new issue