Skip to content

Commit 5a0bf1f

Browse files
committed
Exclude ship_routes.py from runall script, needs graphframes parameters
1 parent d588ec1 commit 5a0bf1f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

spark/run_all.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22

33
readonly c_step="$(tput setaf 6)"
44
readonly c_norm="$(tput sgr0)"
5-
readonly excluded=(helpers.py hft.py container_caching.py)
5+
readonly excluded=(helpers.py hft.py container_caching.py ship_routes.py)
66

77
for file in *.py; do
88
if [[ ! " ${excluded[*]} " =~ " ${file} " ]]; then
99
echo -e "${c_step}Running${c_norm} $file"
1010
spark-submit $file 2>/dev/null
1111
fi
1212
done
13+
14+
./graphframes.sh ship_routes.py

0 commit comments

Comments
 (0)