mirror of
https://gitlab.rlp.net/proj-wise2526-video2document/video2document.git
synced 2026-06-15 18:01:52 +02:00
19 lines
376 B
YAML
19 lines
376 B
YAML
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."
|