|
@@ -21,6 +21,16 @@ if [[ ! -z $SYNTAX ]]; then
|
|
EXIT=1
|
|
EXIT=1
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+pep8 --ignore=E501 netbox/
|
|
|
|
+RC=$?
|
|
|
|
+if [[ $RC != 0 ]]; then
|
|
|
|
+ echo -e "\n$(info) one or more PEP 8 errors detected, failing build."
|
|
|
|
+ EXIT=$RC
|
|
|
|
+fi
|
|
|
|
+
|
|
|
|
|
|
CONFIG="netbox/netbox/configuration.py"
|
|
CONFIG="netbox/netbox/configuration.py"
|
|
cp netbox/netbox/configuration.example.py $CONFIG
|
|
cp netbox/netbox/configuration.example.py $CONFIG
|