From f4478baa62868582442edfbfe993175bfff7f944 Mon Sep 17 00:00:00 2001 From: Ondrej Sykora Date: Mon, 4 Dec 2023 06:07:24 +0000 Subject: [PATCH] Added a script to run all tests for the Python code. --- python/run_all_tests.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 python/run_all_tests.sh diff --git a/python/run_all_tests.sh b/python/run_all_tests.sh new file mode 100755 index 00000000..8d61b1d6 --- /dev/null +++ b/python/run_all_tests.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +# This script must be located in the root directory of the Python code. +cd "$(dirname "$0")" +python3 -m unittest discover -s . -p '*_test.py'