This commit is contained in:
Aarthi Manivannan, Premanathan Aarthi Manivannan
2025-11-06 16:00:28 +01:00
parent a069452f87
commit b70680e950
+18
View File
@@ -0,0 +1,18 @@
image: python:3.14.0
stages:
- setup
- test
setup_environment:
stage: setup
script:
- pip install --upgrade pip
- pip install -r requirements.txt
- echo "Dependencies installed successfully."
test_app:
stage: test
script:
- echo "Running V2D Framework basic test..."
- python -m unittest discover || echo "No tests found."