From fce658671be6649c88febfaca6876c5d20896375 Mon Sep 17 00:00:00 2001 From: apoorvavaidya Date: Tue, 25 Jun 2024 12:56:28 +0200 Subject: [PATCH] renaming test to tests --- project/tests.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 project/tests.sh 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!"