Skip to content

Commit e5b9056

Browse files
authored
Change target names in run_tests script (#292)
1 parent c005626 commit e5b9056

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/run_tests

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fi
2424

2525
TOP_DIR=$(git rev-parse --show-toplevel)
2626

27-
"${TOP_DIR}/scripts/run_go_tests"
27+
"${TOP_DIR}/scripts/run_go_checks"
2828
if [ $? -ne 0 ]; then
2929
echo "Go tests failed."
3030
exit 1
@@ -36,19 +36,19 @@ if [ $? -ne 0 ]; then
3636
exit 1
3737
fi
3838

39-
"${TOP_DIR}/scripts/run_handlebarrz_tests"
39+
"${TOP_DIR}/scripts/run_handlebarrz_checks"
4040
if [ $? -ne 0 ]; then
4141
echo "Handlebarrz tests failed."
4242
exit 1
4343
fi
4444

45-
"${TOP_DIR}/scripts/run_python_tests"
45+
"${TOP_DIR}/scripts/run_python_checks"
4646
if [ $? -ne 0 ]; then
4747
echo "Python tests failed."
4848
exit 1
4949
fi
5050

51-
"${TOP_DIR}/scripts/run_js_tests"
51+
"${TOP_DIR}/scripts/run_js_checks"
5252
if [ $? -ne 0 ]; then
5353
echo "JavaScript tests failed."
5454
exit 1

0 commit comments

Comments
 (0)