/
githubmirror
/
edx-platform
Обзор
Документация
Войти
/
githubmirror
/
edx-platform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
release-ulmo
scripts/all-tests.sh
27 строк
763 B
Robert Raposa
style: remove eslint with frontend code removal ADR
20 мар 2025, 18:03
20 мар 2025, 18:03
399be67
Код
Авторство
О чём код?
#!/usr/bin/env bash set -e ############################################################################### # # all-tests.sh # # Execute tests for edx-platform. This script is designed to be the # entry point for various CI systems. # ############################################################################### # Violations thresholds for failing the build XSSLINT_THRESHOLDS=$(cat scripts/xsslint_thresholds.json) export XSSLINT_THRESHOLDS=${XSSLINT_THRESHOLDS//[[:space:]]/} # Run appropriate CI system script (with args if provided) if [ -n "${SCRIPT_TO_RUN[*]}" ] ; then "${SCRIPT_TO_RUN[@]}" # Exit with the exit code of the called script exit $? else echo "ERROR. Could not detect continuous integration system." exit 1 fi