Files
2023-10-13 14:01:41 +00:00

10 lines
195 B
Bash
Executable File

#!/bin/bash
set -e
cd $(dirname $(realpath $0))
echo Running python unittests
python3 -m unittest discover parser/test
echo Running large tests
./parser/test/large_test.sh
echo All tests passed