Start of integration tests

This commit is contained in:
Donkie
2023-05-18 14:38:28 +02:00
parent d3703d0d92
commit c6ee7df535
8 changed files with 133 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
FROM python:3.11-alpine
COPY requirements.txt /tester/
WORKDIR /tester
RUN pip install -r requirements.txt
ENTRYPOINT [ "pytest", "tests" ]