From 79f6a286c6dc366ab13732d8eaea1698699dfc39 Mon Sep 17 00:00:00 2001 From: apoorvavaidya Date: Tue, 25 Jun 2024 17:03:20 +0200 Subject: [PATCH] removing the test.sh --- project/test.sh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 project/test.sh 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!"