We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a8d49f commit b8f31c2Copy full SHA for b8f31c2
.travis.yml
@@ -44,7 +44,7 @@ matrix:
44
- language-pack-zh-hans
45
- dist: trusty
46
env:
47
- - JOB="2.7" TEST_ARGS="--skip-slow" LINT=true
+ - JOB="2.7" TEST_ARGS="--skip-slow" LINT=true ASV=true
48
addons:
49
apt:
50
packages:
@@ -128,6 +128,7 @@ script:
128
- ci/script_single.sh
129
- ci/script_multi.sh
130
- ci/lint.sh
131
+ - ci/asv.sh
132
- echo "checking imports"
133
- source activate pandas && python ci/check_imports.py
134
- echo "script done"
ci/asv.sh
@@ -13,7 +13,7 @@ if [ "$ASV" ]; then
13
14
cd asv_bench
15
16
- asv run --quick | grep "failed"
+ time asv run --quick | grep "failed"
17
18
if [ $? = "0" ]; then
19
RET=1
0 commit comments