[P] Integrate MapView testing into CI pipeline
All checks were successful
Component testing / Hub testing (push) Successful in 21s
Component testing / Store testing (push) Successful in 41s
Component testing / MapView testing (push) Successful in 16s
Component testing / Integration smoke testing (push) Successful in 2m13s

This commit was merged in pull request #39.
This commit is contained in:
2026-03-31 11:36:28 +03:00
parent 92c0acda2c
commit b171f42fa6
4 changed files with 36 additions and 3 deletions

14
MapView/Dockerfile-test Normal file
View File

@@ -0,0 +1,14 @@
# Use the official Python image as the base image
FROM python:latest
# Set the working directory inside the container
WORKDIR /app
# Copy the requirements.txt file and install dependencies
COPY MapView/requirements.txt .
RUN sed -i 's/==.*//' requirements.txt
RUN apt update && apt install -y libgl-dev libsdl1.2-dev
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --root-user-action ignore --no-cache-dir python-unittest kivy[base] pygame
CMD ["./test-entry.sh"]