diff --git a/project/test.sh b/project/test.sh deleted file mode 100755 index 2ed23fd98..000000000 --- a/project/test.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/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!"