Mentions légales du service

Skip to content
Snippets Groups Projects
unit_tests.sh 141 B
root_dir=$(pwd)
test_dir="$root_dir/tests"
echo "Running unit tests..."
set -e
python3 -m unittest discover -s "$test_dir/unit_tests"
exit $?