File tree 2 files changed +24
-10
lines changed
2 files changed +24
-10
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ echo " inside $0 "
4
+
5
+ source activate pandas
6
+
7
+ RET=0
8
+
9
+ if [ " $ASV " ]; then
10
+ echo " Check for failed asv benchmarks"
11
+
12
+ pip install git+https://github.com/spacetelescope/asv
13
+
14
+ cd asv_bench
15
+
16
+ asv run --quick | grep " failed"
17
+
18
+ if [ $? = " 0" ]; then
19
+ RET=1
20
+ fi
21
+ echo " Check for failed asv benchmarks DONE"
22
+ fi
23
+
24
+ exit $RET
Original file line number Diff line number Diff line change @@ -125,16 +125,6 @@ if [ "$LINT" ]; then
125
125
RET=1
126
126
fi
127
127
echo " Check for deprecated messages without sphinx directive DONE"
128
-
129
- echo " Check for failed asv benchmarks"
130
- cd asv_bench
131
- asv run --quick | grep " failed"
132
-
133
- if [ $? = " 0" ]; then
134
- RET=1
135
- fi
136
- echo " Check for failed asv benchmarks DONE"
137
-
138
128
else
139
129
echo " NOT Linting"
140
130
fi
You can’t perform that action at this time.
0 commit comments