Skip to content

Commit a0137a9

Browse files
committed
feat(test): add filter to regression-testing.
1 parent 8967957 commit a0137a9

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Diff for: scripts/regression-testing.zsh

+7-1
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,17 @@ echo current dir: $PWD
5353

5454
for i ($ZIP_URL){
5555
if [[ $i == *.zip ]] {
56-
echo "============== start $i ==============="
5756
file_name=${i:t}
5857
unzip -o $file_name
5958
dir_name=${file_name%.zip}
6059

60+
if [[ -n $FILTER ]] && [[ $FILTER != $dir_name ]] {
61+
# skip this file
62+
continue
63+
}
64+
65+
echo "============== start $i ==============="
66+
6167
# build latest release version on github
6268
cd $dir_name
6369
rm -f '*.pdf *.aux'

0 commit comments

Comments
 (0)