Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/libsec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
flake8 . --count --statistics
- name: Lint with black
run: |
black . --diff --check
black . --diff --check --exclude='tests_wycheproof_generate.py'
- name: pytest CLI singlesig
run: |
# We retry these 3x if needed, which is a disgusting hack but GH is really buggy for CLI apps
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
ignore=E125,E203,E226,E501,W503
exclude=pbkdf2.py,siphash.py,__init__.py,*/lib/*,*.venv3/*
exclude=pbkdf2.py,siphash.py,__init__.py,*/lib/*,*.venv3/*,tests_wycheproof_generate.py
max-line-length=127