File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,15 @@ script:
91
91
instrumental -t ecdsa -i 'test.*|.*_version' `which pytest` $files
92
92
instrumental -f .instrumental.cov -sr
93
93
fi
94
+ - |
95
+ if [[ $INSTRUMENTAL && $TRAVIS_PULL_REQUEST == "false" ]]; then
96
+ # exclude the super slow test_malformed_sigs.py, until #127 is merged
97
+ files="$(ls src/ecdsa/test*.py | grep -v test_malformed_sigs.py)"
98
+ instrumental -t ecdsa -i 'test.*|.*_version' `which pytest` $files
99
+ instrumental -f .instrumental.cov -s
100
+ # just log the values when merging
101
+ instrumental -f .instrumental.cov -s | python diff-instrumental-2.py
102
+ fi
94
103
- |
95
104
if [[ $INSTRUMENTAL && $TRAVIS_PULL_REQUEST != "false" ]]; then
96
105
instrumental -f .instrumental.cov -s | python diff-instrumental-2.py --read .diff-instrumental --fail-under 70 --max-difference -0.1
You can’t perform that action at this time.
0 commit comments