forked from osmlab/atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
format.sh
executable file
·76 lines (60 loc) · 1.96 KB
/
format.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env bash
# general case script abort if a command fails
# this can be overridden with a custom error message using '|| err_shutdown'
set -e
set -o pipefail
### define utility functions ###
################################
err_shutdown() {
echo "format.sh: ERROR: $1"
deactivate
exit 1
}
### check to prevent users from running this script directly ###
################################################################
if [ "$1" != "ranFromGradle" ];
then
err_shutdown "this script should be run using the atlas gradle task 'formatPyatlas'"
fi
### get CHECK or APPLY mode ###
###############################
format_mode=$2
### set up variables to store directory names ###
#################################################
gradle_project_root_dir="$(pwd)"
pyatlas_dir="pyatlas"
pyatlas_srcdir="pyatlas"
pyatlas_testdir="unit_tests"
pyatlas_root_dir="$gradle_project_root_dir/$pyatlas_dir"
venv_path="$pyatlas_root_dir/__pyatlas_venv__"
pyatlas_format_script="yapf_format.py"
### abort the script if the pyatlas source folder is not present ###
####################################################################
if [ ! -d "$pyatlas_root_dir/$pyatlas_srcdir" ];
then
err_shutdown "pyatlas source folder not found"
fi
### format the module source code ###
#####################################
# start the venv
if [ ! -d "$venv_path" ];
then
err_shutdown "missing $venv_path"
fi
# shellcheck source=/dev/null
source "$venv_path/bin/activate"
# enter the pyatlas project directory so the formatting script will work
pushd "$pyatlas_root_dir"
pip install yapf==0.22.0
if ! python "$pyatlas_format_script" "$pyatlas_srcdir" "$format_mode";
then
err_shutdown "CHECK format step failed: run './gradlew applyFormatPyatlas'"
fi
if ! python "$pyatlas_format_script" "$pyatlas_testdir" "$format_mode";
then
err_shutdown "CHECK format step failed: run './gradlew applyFormatPyatlas'"
fi
# get back to gradle project directory
popd
# shutdown the venv
deactivate