You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: GitHub Actions workflow and flake8 configuration
- Fixed indentation in test-and-build.yml test-install job
- Added --exclude flag to flake8 commands to skip cryptod directory
- Created .flake8 config file to globally exclude cryptod from linting
- Updated black and isort commands to exclude cryptod
- All 117 tests passing locally
python -c "import sys; import libcrypto; assert 'ecdsa' not in sys.modules, 'ecdsa should not be loaded'; print('No external crypto dependencies detected')"
171
+
- name: Verify no external crypto dependencies
172
+
run: |
173
+
python -c "import sys; import libcrypto; assert 'ecdsa' not in sys.modules, 'ecdsa should not be loaded'; print('No external crypto dependencies detected')"
0 commit comments