J08nY / pyecsca

Python Elliptic Curve Side-Channel Analysis toolkit.
https://pyecsca.org/
MIT License
56 stars 15 forks source link

Fix import error in test_target.py #50

Closed Tomko10 closed 1 year ago

Tomko10 commented 1 year ago

An exception import at the beginning of the file caused errors in test discovery. Moved the import to where it's used after the condition checking if the module containing it is installed.

codecov[bot] commented 1 year ago

Codecov Report

Merging #50 (819b4e1) into master (8700a51) will decrease coverage by 4.53%. Report is 60 commits behind head on master. The diff coverage is n/a.

@@            Coverage Diff             @@
##           master      #50      +/-   ##
==========================================
- Coverage   88.22%   83.69%   -4.53%     
==========================================
  Files          66       74       +8     
  Lines        5100     5754     +654     
  Branches      927     1058     +131     
==========================================
+ Hits         4499     4815     +316     
- Misses        411      723     +312     
- Partials      190      216      +26     

see 28 files with indirect coverage changes

:mega: We’re building smart automated test selection to slash your CI/CD build times. Learn more

J08nY commented 1 year ago

Thx.