minor fix

This commit is contained in:
woojin
2023-08-23 16:02:10 +09:00
parent c24f97deef
commit 5df7e204e3

View File

@@ -9,13 +9,12 @@ BASEDIR=$(dirname "$0")
source $BASEDIR/test_cases.sh
source $BASEDIR/grade-utils.sh
RUNNERS="cargo"
RUNNER="cargo"
# Lints.
run_linters || exit 0
# Executes test for each runner.
for RUNNER in "${RUNNERS[@]}"; do
echo "Running with $RUNNER..."
echo "Below lines will show only failed tests."
@@ -25,7 +24,6 @@ for RUNNER in "${RUNNERS[@]}"; do
# Runs tests.
SCORE=$(run_tests)
done
echo Your score: ${SCORE}