diff --git a/project/tests.sh b/project/tests.sh new file mode 100755 index 000000000..2ed23fd98 --- /dev/null +++ b/project/tests.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# Fail the script on the first error +set -e + +# Install the required dependencies +echo "Installing dependencies..." +pip install -r project/requirements.txt + +# Run the tests +echo "Running tests..." +pytest project/test_pipeline.py + +echo "All tests passed!"