Skip to content

Commit 5f137ec

Browse files
committed
speed up instrumental, reenable test_malformed_sigs.py under it
1 parent 58ea273 commit 5f137ec

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ install:
105105
else
106106
travis_retry pip install -r build-requirements.txt;
107107
fi
108-
- if [[ $TOX_ENV =~ gmpy2 ]]; then travis_retry pip install gmpy2; fi
108+
- if [[ $TOX_ENV =~ gmpy2 ]] || [[ $INSTRUMENTAL ]]; then travis_retry pip install gmpy2; fi
109109
- if [[ $TOX_ENV =~ gmpyp ]]; then travis_retry pip install gmpy; fi
110110
- if [[ $INSTRUMENTAL ]]; then travis_retry pip install instrumental; fi
111111
- pip list
@@ -117,8 +117,7 @@ script:
117117
- |
118118
if [[ $INSTRUMENTAL && $TRAVIS_PULL_REQUEST != "false" ]]; then
119119
git checkout $PR_FIRST^
120-
# exclude the super slow test_malformed_sigs.py, until #127 is merged
121-
files="$(ls src/ecdsa/test*.py | grep -v test_malformed_sigs.py)"
120+
files="$(ls src/ecdsa/test*.py)"
122121
instrumental -t ecdsa -i 'test.*|.*_version' `which pytest` $files
123122
instrumental -f .instrumental.cov -s
124123
instrumental -f .instrumental.cov -s | python diff-instrumental.py --save .diff-instrumental

0 commit comments

Comments
 (0)