Skip to content

Commit e38206a

Browse files
author
Takashi Matsuo
committed
fix tab
1 parent 1c451b9 commit e38206a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.kokoro/tests/run_tests.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -136,16 +136,16 @@ for file in **/requirements.txt; do
136136

137137
# If no local noxfile exists, copy the one from root
138138
if [[ ! -f "noxfile.py" ]]; then
139-
PARENT_DIR=$(cd ../ && pwd)
140-
while [[ "$PARENT_DIR" != "$ROOT" && ! -f "$PARENT_DIR/noxfile-template.py" ]];
141-
do
139+
PARENT_DIR=$(cd ../ && pwd)
140+
while [[ "$PARENT_DIR" != "$ROOT" && ! -f "$PARENT_DIR/noxfile-template.py" ]];
141+
do
142142
PARENT_DIR=$(dirname "$PARENT_DIR")
143-
done
144-
cp "$PARENT_DIR/noxfile-template.py" "./noxfile.py"
145-
echo -e "\n Using noxfile-template from parent folder ($PARENT_DIR). \n"
146-
cleanup_noxfile=1
143+
done
144+
cp "$PARENT_DIR/noxfile-template.py" "./noxfile.py"
145+
echo -e "\n Using noxfile-template from parent folder ($PARENT_DIR). \n"
146+
cleanup_noxfile=1
147147
else
148-
cleanup_noxfile=0
148+
cleanup_noxfile=0
149149
fi
150150

151151
# Use nox to execute the tests for the project.
@@ -170,7 +170,7 @@ for file in **/requirements.txt; do
170170

171171
# Remove noxfile.py if we copied.
172172
if [[ $cleanup_noxfile -eq 1 ]]; then
173-
rm noxfile.py
173+
rm noxfile.py
174174
fi
175175

176176
done

0 commit comments

Comments
 (0)